Commit 5dcd9a2b authored by Wayne Davison's avatar Wayne Davison

Changed the -o to -a in the "if".

parent 6ce9432d
#!/bin/sh #!/bin/sh
# Use autoconf, autoheader, yodl, etc. to ready the generated files # Use autoconf, autoheader, yodl, etc. to ready the generated files in the
# in the release. This is typically used after applying a diff from # release. This is typically used after applying a diff from the "patches"
# "patches" directory in CVS. # directory in a CVS-checked-out version.
# #
# NOTE: if you use a diff from the "patches" directory in a release # NOTE: if you use a diff from the "patches" directory of a *release tar*
# tar, this is not needed (but doesn't hurt anything). # (as opposed to from CVS), this is not needed (but doesn't hurt anything).
dir=`dirname $0` 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" cd "$dir"
fi fi
make -f prepare-source.mak make -f prepare-source.mak
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment