svn commit: samba r26242 - in branches/SAMBA_4_0: . source/scripting/python

jelmer at samba.org jelmer at samba.org
Mon Dec 3 03:14:28 GMT 2007


Author: jelmer
Date: 2007-12-03 03:14:27 +0000 (Mon, 03 Dec 2007)
New Revision: 26242

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=26242

Log:
Don't fail if swig is not available.
Modified:
   branches/SAMBA_4_0/
   branches/SAMBA_4_0/source/scripting/python/config.mk


Changeset:

Property changes on: branches/SAMBA_4_0
___________________________________________________________________
Name: bzr:revision-info
...skipped...
Name: bzr:revision-id:v3-trunk0
...skipped...

Modified: branches/SAMBA_4_0/source/scripting/python/config.mk
===================================================================
--- branches/SAMBA_4_0/source/scripting/python/config.mk	2007-12-03 02:58:20 UTC (rev 26241)
+++ branches/SAMBA_4_0/source/scripting/python/config.mk	2007-12-03 03:14:27 UTC (rev 26242)
@@ -16,7 +16,7 @@
 .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"



More information about the samba-cvs mailing list