Author: abartlet Date: 2007-07-16 23:38:29 +0000 (Mon, 16 Jul 2007) New Revision: 23905
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=23905 Log: SATOH Fumiyasu <[EMAIL PROTECTED]> 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 Modified: branches/SAMBA_4_0/source/autogen.sh Changeset: Modified: branches/SAMBA_4_0/source/autogen.sh =================================================================== --- branches/SAMBA_4_0/source/autogen.sh 2007-07-16 21:17:26 UTC (rev 23904) +++ branches/SAMBA_4_0/source/autogen.sh 2007-07-16 23:38:29 UTC (rev 23905) @@ -65,7 +65,7 @@ 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."
