From 3ccf9ff2ab468d91b9843139df2dfdccbe24c7a1 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 16 Jul 2007 01:48:07 +0000 Subject: [PATCH] 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) --- source4/autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/autogen.sh b/source4/autogen.sh index 9fab356698c..4337d3b55c5 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." -- 2.34.1