[gs-cvs] rev 8431 - trunk/gs/contrib

alexcher at ghostscript.com alexcher at ghostscript.com
Mon Dec 10 12:27:11 PST 2007


Author: alexcher
Date: 2007-12-10 12:27:11 -0800 (Mon, 10 Dec 2007)
New Revision: 8431

Modified:
   trunk/gs/contrib/contrib.mak
Log:
Fix a compilation error on Tru64's native cc, which doesn't tolerate spaces
between -I and the directory. Thanks to M. Rutter for the patch. Bug 689602


Modified: trunk/gs/contrib/contrib.mak
===================================================================
--- trunk/gs/contrib/contrib.mak	2007-12-10 16:13:26 UTC (rev 8430)
+++ trunk/gs/contrib/contrib.mak	2007-12-10 20:27:11 UTC (rev 8431)
@@ -524,7 +524,7 @@
 ###                                                                      ###
 LIPS_DIR=$(CONTRIBSRC)lips4
 LIPS_SRC=$(LIPS_DIR)$(D)
-LIPS_OPT=-DGS_VERSION_MAJOR=$(GS_VERSION_MAJOR) $(I_) $(LIPS_SRC)
+LIPS_OPT=-DGS_VERSION_MAJOR=$(GS_VERSION_MAJOR) $(I_)$(LIPS_SRC)
 
 $(GLOBJ)gdevlprn.$(OBJ): $(LIPS_SRC)gdevlprn.c $(LIPS_SRC)gdevlprn.h\
  $(gdevprn_h) $(PDEVH)



More information about the gs-cvs mailing list