summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <ralph.giles@artifex.com>2007-06-13 20:55:07 +0000
committerRalph Giles <ralph.giles@artifex.com>2007-06-13 20:55:07 +0000
commit64a6711d8d74c9ce41416cd200ddb9172c410ee7 (patch)
tree92b13d3617ff74977de9e93f40e22da44c302d9a
parentcefd1abecd2ea0c8b976585d39c316d9bc0a5b67 (diff)
Remove spurious linker flags from the non-darwin gcc build of gslite.
All these options require arguments and none were being passed. git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@2853 06663e23-700e-0410-b217-a244a6096597
-rwxr-xr-xtools/gslite/gslt_lib_gcc.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gslite/gslt_lib_gcc.mak b/tools/gslite/gslt_lib_gcc.mak
index 1fdd8d1fa..b4e7d92cf 100755
--- a/tools/gslite/gslt_lib_gcc.mak
+++ b/tools/gslite/gslt_lib_gcc.mak
@@ -114,7 +114,7 @@ $(GSLITE_LIB): $(GSLIB_PARTS) $(GSLT_OBJS) $(MAKEFILE)
ifeq ($(PLATFORM), Darwin)
gcc -dynamiclib -o libgslt.dylib $(shell cat obj/ld.tr | sed 's/\\//g') $(GSXLIBS) $(GSLT_OBJS) $(STDLIBS)
else
- gcc -Xlinker -V -shared -Wl $(shell cat obj/ld.tr | sed 's/\\//g') $(GSXLIBS) $(GSLT_OBJS) -o $(GSLITE_LIB) $(STDLIBS)
+ gcc -shared $(shell cat obj/ld.tr | sed 's/\\//g') $(GSXLIBS) $(GSLT_OBJS) -o $(GSLITE_LIB) $(STDLIBS)
endif
$(GSLTOBJ)gslt_image_test.$(OBJ) : $(GSLITE_LIB) $(GSLTSRC)gslt_image_test.c