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)
Jan 10 2024, 1:37 AM
Unknown Object (File)
Dec 20 2023, 1:13 AM
Unknown Object (File)
Nov 5 2023, 2:11 AM
Unknown Object (File)
Nov 4 2023, 6:40 PM
Unknown Object (File)
Oct 3 2023, 6:38 PM
Unknown Object (File)
Aug 19 2023, 2:33 AM
Unknown Object (File)
Aug 7 2023, 1:32 PM
Unknown Object (File)
Jul 15 2023, 10:10 PM
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.