diff options
author | Wayne Davison <wayned@samba.org> | 2006-10-07 14:39:01 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-10-07 14:39:01 +0000 |
commit | 5dcd9a2b70743b6a0ef8b5a8ade2e13f58ca6d71 (patch) | |
tree | 7e0f8bc3f4c968227dc981d430c13045aa0c772d /prepare-source | |
parent | 6ce9432d755104c8fb6afe82ddcdfc905d498da7 (diff) | |
download | rsync-5dcd9a2b70743b6a0ef8b5a8ade2e13f58ca6d71.tar.gz rsync-5dcd9a2b70743b6a0ef8b5a8ade2e13f58ca6d71.tar.bz2 rsync-5dcd9a2b70743b6a0ef8b5a8ade2e13f58ca6d71.zip |
Changed the -o to -a in the "if".
Diffstat (limited to 'prepare-source')
-rwxr-xr-x | prepare-source | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/prepare-source b/prepare-source index 508c8df8..c3a788d3 100755 --- a/prepare-source +++ b/prepare-source @@ -1,12 +1,12 @@ #!/bin/sh -# Use autoconf, autoheader, yodl, etc. to ready the generated files -# in the release. This is typically used after applying a diff from -# "patches" directory in CVS. +# Use autoconf, autoheader, yodl, etc. to ready the generated files in the +# release. This is typically used after applying a diff from the "patches" +# directory in a CVS-checked-out version. # -# NOTE: if you use a diff from the "patches" directory in a release -# tar, this is not needed (but doesn't hurt anything). +# NOTE: if you use a diff from the "patches" directory of a *release tar* +# (as opposed to from CVS), this is not needed (but doesn't hurt anything). dir=`dirname $0` -if test x"$dir" != x -o x"$dir" != x.; then +if test x"$dir" != x -a x"$dir" != x.; then cd "$dir" fi make -f prepare-source.mak |