Using ">>" with no command in configure can be ambigious for some ancient /bin/sh. #7876
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Current configure script uses ambiguous syntax. Bash executes it correctly, but ancient Bourne shell may be confused. For example, an execution on FreeBSD 9.2 (2013) aborts like:
The claimed part in config.status is a redirection ">>" with no command, like,
This part is expanded from AX_OUT_OF_TREE_FILE in configure.ac:
A redirection ">>" with no leading command would be acceptable (I confirmed "> test.txt" causes no error on FreeBSD 9.2 /bin/sh), but using it in a case-esac statement can confuse the parser in some ancient /bin/sh. Maybe some /bin/sh try to capture the command after "&&", and misunderstand ";;" as the command to be executed (and failed).
Rewriting AC_CONFIG_COMMANDS to "test ! -f $srcdir/$1 && echo -n >> $srcdir/$1" would work for same result.