Skip to content

Commit

Permalink
Merge pull request #7876 from mpsuzuki/fix-config-stray-redirect
Browse files Browse the repository at this point in the history
Using ">>" with no command in configure can be ambigious for some ancient /bin/sh.
  • Loading branch information
douzzer authored Aug 16, 2024
2 parents 1190d1b + bbdf7fc commit 9a693f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -9929,7 +9929,7 @@ AX_AM_JOBSERVER([yes])
# See Automake 9.4.1 Built Sources Example
AC_DEFUN([AX_OUT_OF_TREE_FILE],[
AC_CONFIG_COMMANDS([$1], [test ! -f $srcdir/$1 && >> $srcdir/$1])
AC_CONFIG_COMMANDS([$1], [test ! -f $srcdir/$1 && echo -n >> $srcdir/$1])
])
AX_OUT_OF_TREE_FILE([wolfssl/wolfcrypt/async.h])
Expand Down

0 comments on commit 9a693f5

Please sign in to comment.