diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-07-16 23:38:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:01:08 -0500 |
commit | c87d5017d9ef63d4e758ff0904ba417bfa669858 (patch) | |
tree | 054315c8188b25ec2a3eca17d2a4e348188041e2 /source4/autogen.sh | |
parent | c1010f666c7c91f6a0dd3a0709b3376e2a5066d1 (diff) | |
download | samba-c87d5017d9ef63d4e758ff0904ba417bfa669858.tar.gz samba-c87d5017d9ef63d4e758ff0904ba417bfa669858.tar.bz2 samba-c87d5017d9ef63d4e758ff0904ba417bfa669858.zip |
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)
Diffstat (limited to 'source4/autogen.sh')
-rwxr-xr-x | source4/autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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." |