summaryrefslogtreecommitdiff
path: root/solenv/inc/unxmacxp.mk
diff options
context:
space:
mode:
authorPatrick Luby <pluby@openoffice.org>2001-03-06 18:20:33 +0000
committerPatrick Luby <pluby@openoffice.org>2001-03-06 18:20:33 +0000
commit439c832f6aa8c4f3a7d56992422d645adb961b4f (patch)
tree7f91c5141b0c9a4e5bd27aac5ecbac21c1d31823 /solenv/inc/unxmacxp.mk
parent5a3b1e9a13788aa489b832d35c404626778d5962 (diff)
Corrected linking steps for Mac OS X so that the number of arguments to the linker is reduced. All of the -dylib_file arguments were pushing the number of arguments past the maximum that ld could handle.
Diffstat (limited to 'solenv/inc/unxmacxp.mk')
-rw-r--r--solenv/inc/unxmacxp.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/solenv/inc/unxmacxp.mk b/solenv/inc/unxmacxp.mk
index b0c4cce53f4f..054a4241d5a6 100644
--- a/solenv/inc/unxmacxp.mk
+++ b/solenv/inc/unxmacxp.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: unxmacxp.mk,v $
#
-# $Revision: 1.27 $
+# $Revision: 1.28 $
#
-# last change: $Author: pluby $ $Date: 2001-03-04 22:12:09 $
+# last change: $Author: pluby $ $Date: 2001-03-06 19:20:33 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -129,7 +129,7 @@ CFLAGSNOOPT=
.ENDIF
CFLAGSOUTOBJ=-o
-SOLARVERSHLLIBS=$(shell -/bin/sh -c "ls $(SOLARLIBDIR)$/*$(DLLPOST) $(LB)$/*$(DLLPOST) $(MISC)$/*$(DLLPOST) 2>/dev/null")
+SOLARVERSHLLIBS=$(shell -/bin/sh -c "ls $(SOLARLIBDIR)$/*$(DLLPOST) $(LB)$/*$(DLLPOST) $(MISC)$/*$(DLLPOST) 2>/dev/null | grep -E -v 'lib\w+static'")
.IF "$(STLPORT4)"!=""
SOLARVERSHLLIBS+=$(shell -/bin/sh -c "ls $(STLPORT4)$/lib$/*$(DLLPOST) 2>/dev/null")
.ENDIF