diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-05-16 03:04:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:16:46 -0500 |
commit | bc6312f74d19a0e561acc186c2e185e140bd22c5 (patch) | |
tree | 92959bbf9fbcbe49f25c45244b261215c49b12a8 /source4/build/smb_build/makefile.pm | |
parent | 9e044848e394e4395f88b77361e7be06833e3bb8 (diff) | |
download | samba-bc6312f74d19a0e561acc186c2e185e140bd22c5.tar.gz samba-bc6312f74d19a0e561acc186c2e185e140bd22c5.tar.bz2 samba-bc6312f74d19a0e561acc186c2e185e140bd22c5.zip |
r6809: ifeq is not portable in make - jelmer, you'll need to find some other way of doing
this if you want detection of socket wrapper :-)
(This used to be commit f4bfc3a80e0986d48ea8f6ece5432732f5738f32)
Diffstat (limited to 'source4/build/smb_build/makefile.pm')
-rw-r--r-- | source4/build/smb_build/makefile.pm | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index ed06e7265d..f9221879bf 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -154,13 +154,8 @@ test: @DEFAULT_TEST_TARGET@ test-swrap: all export SOCKET_WRAPPER_DIR=. -ifeq (@HAVE_SOCKET_WRAPPER@,yes) ./script/tests/selftest.sh `pwd`/prefix-test -else - echo "Socket wrapper not built in, unable to run test-swrap" - exit 1 -endif - + test-noswrap: all ./script/tests/selftest.sh `pwd`/prefix-test |