From: Tim Prouty Date: Wed, 19 Nov 2008 00:47:23 +0000 (-0800) Subject: s3/s4 build: Fix makefile expression to work on more systems X-Git-Tag: samba-4.0.0alpha6~480^2~181 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=314e5cfa7ff9d4decb7edaed42b7cbe0ad5a7b3c;p=thirdparty%2Fsamba.git s3/s4 build: Fix makefile expression to work on more systems --- diff --git a/source4/build/make/python.mk b/source4/build/make/python.mk index e307ba74bb7..67a3e862153 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"