Commit 77b013af authored by Wayne Davison's avatar Wayne Davison

Don't use the -C option to make (since it's not portable).

parent 08c0cd8a
......@@ -6,8 +6,7 @@
# NOTE: if you use a diff from the "patches" directory in a release
# tar, this is not needed (but doesn't hurt anything).
dir=`dirname $0`
if test x"$dir" = x -o x"$dir" = x.; then
make -f prepare-source.mak
else
make -C "$dir" -f prepare-source.mak
if test x"$dir" != x -o x"$dir" != x.; then
cd "$dir"
fi
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