1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-28 01:58:17 +03:00

r23905: SATOH Fumiyasu <fumiyas@osstech.jp> 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)
This commit is contained in:
Andrew Bartlett 2007-07-16 23:38:29 +00:00 committed by Gerald (Jerry) Carter
parent c1010f666c
commit c87d5017d9

View File

@ -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."