summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2007-07-16 01:48:07 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:01:07 -0500
commit3ccf9ff2ab468d91b9843139df2dfdccbe24c7a1 (patch)
treee38d5932745f02f8f467d34e805b64da62bd4bee
parentb9d77db587f42c2c7a26b7fd8082740c617cb467 (diff)
downloadsamba-3ccf9ff2ab468d91b9843139df2dfdccbe24c7a1.tar.gz
samba-3ccf9ff2ab468d91b9843139df2dfdccbe24c7a1.tar.bz2
samba-3ccf9ff2ab468d91b9843139df2dfdccbe24c7a1.zip
r23881: A quick fix from davecb@spamcop.net to be more portable to non-GNU
make in autogen.sh. Andrew Bartlett (This used to be commit f47e5f716137b08380b17fdd95d2f454f53d6ce6)
-rwxr-xr-xsource4/autogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/autogen.sh b/source4/autogen.sh
index 9fab356698..4337d3b55c 100755
--- a/source4/autogen.sh
+++ b/source4/autogen.sh
@@ -65,7 +65,7 @@ rm -rf autom4te*.cache
if test x"${AUTOGEN_SKIP_SWAT}" != x"yes"; then
echo "$0: building Web Application Framework (SWAT)"
- make -C ../webapps/swat distclean build || exit 1
+ (cd ../webapps/swat; make distclean build || exit 1)
fi
echo "Now run ./configure and then make."