diff options
author | Tim Prouty <tprouty@samba.org> | 2008-11-18 16:47:23 -0800 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2008-11-18 17:43:38 -0800 |
commit | 314e5cfa7ff9d4decb7edaed42b7cbe0ad5a7b3c (patch) | |
tree | 7518b72b8e0b9ae91a295f691c1bd0f8ccb5c79b /source4/build | |
parent | ce44a2032362c6160931663af67e2e2e663b0c63 (diff) | |
download | samba-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.mk | 2 |
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" |