Page MenuHomeFreeBSD

Fix newvers.sh with BUILD_WITH_STRICT_TMPPATH=1
ClosedPublic

Authored by arichardson on Nov 29 2018, 10:34 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Jan 22, 11:34 PM
Unknown Object (File)
Sun, Jan 19, 8:18 AM
Unknown Object (File)
Jan 1 2025, 4:52 PM
Unknown Object (File)
Dec 22 2024, 11:55 PM
Unknown Object (File)
Dec 22 2024, 7:10 PM
Unknown Object (File)
Dec 21 2024, 3:58 PM
Unknown Object (File)
Dec 12 2024, 2:34 PM
Unknown Object (File)
Nov 30 2024, 5:17 AM
Subscribers

Details

Summary

newvers.sh runs mkfifo which did not exist before this change.
However, I didn't notice before because it is run from a function
where a missing command does cause a noticeable failure.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

emaste added subscribers: kib, markj.

LGTM. One of either @kib or @markj suggested eliminating the mkfifo but I believe we cannot without a more capable shell.

This revision is now accepted and ready to land.Nov 29 2018, 3:19 PM

Oh huh. What's the problem with:

$git_cmd ... | while read smode ...; do
...
done

? A quick test suggests that /bin/sh does indeed support that.

Anyway, LGTM.

Oh, maybe I'm conflating a different comment with something about mkfifo, but it was in D15968. In any case, the issue is that with cmd | while ... a return in the while loop returns from the subshell, not the function. There's a decent Stack Overflow discussion at https://stackoverflow.com/questions/13726764/while-loop-subshell-dilemma-in-bash

This revision was automatically updated to reflect the committed changes.