mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
fix typo
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@24114 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3132e63255
commit
0f92fdb6a9
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
2006-11-16 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* target.make: fix typo (extra bracket in conditional).
|
||||
|
||||
2006-11-15 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
* Documentation/install.texi: Updated by removing section about
|
||||
|
|
|
@ -985,10 +985,10 @@ endif
|
|||
# Solaris
|
||||
#
|
||||
ifeq ($(findstring solaris, $(GNUSTEP_TARGET_OS)), solaris)
|
||||
ifeq ($(SOLARIS_SHARED)), yes)
|
||||
GCC_LINK_FLAG=-shared
|
||||
ifeq ($(SOLARIS_SHARED), yes)
|
||||
GCC_LINK_FLAG=-shared
|
||||
else
|
||||
GCC_LINK_FLAG=-G
|
||||
GCC_LINK_FLAG=-G
|
||||
endif
|
||||
HAVE_SHARED_LIBS = yes
|
||||
SHARED_LIB_LINK_CMD = \
|
||||
|
|
Loading…
Reference in a new issue