From 5dcd9a2b70743b6a0ef8b5a8ade2e13f58ca6d71 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 7 Oct 2006 14:39:01 +0000 Subject: [PATCH] Changed the -o to -a in the "if". --- prepare-source | 12 ++++++------ 1 file 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 -- 2.34.1