mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Fixed bug in ADDITIONAL_NATIVE_LIBS, missing space between -l and Renaissance
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@18238 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
bfcd8ca8a1
commit
83ee9bf6de
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Fri Nov 28 19:07:11 2003 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* rules.make (ADDITIONAL_OBJC_LIBS): Fixed bug in the
|
||||
implementation of ADDITIONAL_NATIVE_LIBS on gnu.
|
||||
|
||||
Tue Nov 25 12:23:20 2003 Manuel Guesdon <ml@orange-concept.com>
|
||||
|
||||
* Instance/Shared/bundle.make
|
||||
|
|
|
@ -169,7 +169,7 @@ endif
|
|||
ifeq ($(FOUNDATION_LIB),apple)
|
||||
ADDITIONAL_OBJC_LIBS += $(foreach lib,$(ADDITIONAL_NATIVE_LIBS),-framework $(lib))
|
||||
else
|
||||
ADDITIONAL_OBJC_LIBS += $(foreach lib,$(ADDITIONAL_NATIVE_LIBS),-l $(lib))
|
||||
ADDITIONAL_OBJC_LIBS += $(foreach lib,$(ADDITIONAL_NATIVE_LIBS),-l$(lib))
|
||||
endif
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue