Merge pull request #7876 from mpsuzuki/fix-config-stray-redirect

Using ">>" with no command in configure can be ambigious for some ancient /bin/sh.
pull/7866/head
Daniel Pouzzner 2024-08-16 15:38:39 -05:00 committed by GitHub
commit 9a693f5e65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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])