diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-03 03:14:27 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:47:22 +0100 |
commit | 7bf6b95b1ffdfe72144b39132c73fe1c234270b0 (patch) | |
tree | 932798d09f036507c87f10e5e262038da86c6464 /source4 | |
parent | 8192350f1071c21880d13417c1212683509f189e (diff) | |
download | samba-7bf6b95b1ffdfe72144b39132c73fe1c234270b0.tar.gz samba-7bf6b95b1ffdfe72144b39132c73fe1c234270b0.tar.bz2 samba-7bf6b95b1ffdfe72144b39132c73fe1c234270b0.zip |
r26242: Don't fail if swig is not available.
(This used to be commit 12debcceac6cca1d8c8e1f78a0c7772b944e9f8d)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/scripting/python/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/config.mk b/source4/scripting/python/config.mk index c4722e2b9a..91437e1e0b 100644 --- a/source4/scripting/python/config.mk +++ b/source4/scripting/python/config.mk @@ -16,7 +16,7 @@ swig: pythonmods .SUFFIXES: _wrap.c .i .i_wrap.c: - [ "$(SWIG)" != "no" ] && $(SWIG) -Wall -I$(srcdir)/scripting/swig -python -keyword $< + [ "$(SWIG)" == "no" ] || $(SWIG) -Wall -I$(srcdir)/scripting/swig -python -keyword $< realdistclean:: @echo "Removing SWIG output files" |