summaryrefslogtreecommitdiff
path: root/source4/build
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2008-11-18 16:47:23 -0800
committerTim Prouty <tprouty@samba.org>2008-11-18 17:43:38 -0800
commit314e5cfa7ff9d4decb7edaed42b7cbe0ad5a7b3c (patch)
tree7518b72b8e0b9ae91a295f691c1bd0f8ccb5c79b /source4/build
parentce44a2032362c6160931663af67e2e2e663b0c63 (diff)
downloadsamba-314e5cfa7ff9d4decb7edaed42b7cbe0ad5a7b3c.tar.gz
samba-314e5cfa7ff9d4decb7edaed42b7cbe0ad5a7b3c.tar.bz2
samba-314e5cfa7ff9d4decb7edaed42b7cbe0ad5a7b3c.zip
s3/s4 build: Fix makefile expression to work on more systems
Diffstat (limited to 'source4/build')
-rw-r--r--source4/build/make/python.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/make/python.mk b/source4/build/make/python.mk
index e307ba74bb..67a3e86215 100644
--- a/source4/build/make/python.mk
+++ b/source4/build/make/python.mk
@@ -46,7 +46,7 @@ swig:: pythonmods
.SUFFIXES: _wrap.c .i .py
%_wrap.c %.py: %.i
- [ "$(SWIG)" == "no" ] || $(SWIG) -O -Wall -python -keyword -I../source4 $<
+ [ "$(SWIG)" = "no" ] || $(SWIG) -O -Wall -python -keyword -I../source4 $<
realdistclean::
@echo "Removing SWIG output files"