diff options
Diffstat (limited to 'prepare-source')
-rwxr-xr-x | prepare-source | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/prepare-source b/prepare-source index f5b7b46c..a4e78e61 100755 --- a/prepare-source +++ b/prepare-source @@ -6,7 +6,7 @@ # # build build the config files [the default w/no arg] # fetch fetch the latest dev autoconfig files -# fetchgen fetch all the latest dev generated files (including man pages) +# fetchgen fetch all the latest dev generated files (including manpages) # fetchSRC fetch the latest dev source files [NON-GENERATED FILES] # # The script stops after the first successful action. @@ -32,7 +32,7 @@ if test "$dir" != '.'; then fi done for fn in configure.sh config.h.in aclocal.m4; do - test ! -f $fn -a -f "$dir/$fn" && cp -p "$dir/$fn" $fn + test ! -f $fn && test -f "$dir/$fn" && cp -p "$dir/$fn" $fn done fi |