From c87d5017d9ef63d4e758ff0904ba417bfa669858 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 16 Jul 2007 23:38:29 +0000 Subject: r23905: SATOH Fumiyasu points out that we want &&, not ; here... (We don't want to make a distclean of the main user tree, just because they don't have the parent directory checked out). Andrew Bartlett (This used to be commit 70bf6936850dede51d085a1f1f22f43b98823ff2) --- source4/autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/autogen.sh b/source4/autogen.sh index 4337d3b55c..74634263a2 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)" - (cd ../webapps/swat; make distclean build || exit 1) + (cd ../webapps/swat && make distclean build || exit 1) fi echo "Now run ./configure and then make." -- cgit