summaryrefslogtreecommitdiff
path: root/makefiles/Makefile.top
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-01-06 01:41:30 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-01-06 01:41:30 +0000
commit2fd70ceb4118c4f17466e7e04b9a8f7879168bff (patch)
treecbabc892eac5fbe8bcaa873f364f6a9aca0865ce /makefiles/Makefile.top
parent015ae9ea0c6b787319a1e53701c6da82c010c3f7 (diff)
downloadbuildsystem-2fd70ceb4118c4f17466e7e04b9a8f7879168bff.tar.gz
buildsystem-2fd70ceb4118c4f17466e7e04b9a8f7879168bff.tar.bz2
It turns out that arm-unknown-riscos-ln doesn't understand coalesced options
svn path=/trunk/tools/buildsystem/; revision=9788
Diffstat (limited to 'makefiles/Makefile.top')
-rw-r--r--makefiles/Makefile.top8
1 files changed, 4 insertions, 4 deletions
diff --git a/makefiles/Makefile.top b/makefiles/Makefile.top
index a9e0213..e85312d 100644
--- a/makefiles/Makefile.top
+++ b/makefiles/Makefile.top
@@ -208,8 +208,8 @@ ifeq ($(COMPONENT_TYPE),lib-shared)
POST_TARGETS := __postshared $(POST_TARGETS)
__postshared:
- $(Q)$(LN) $(LNFLAGS) -fs $(notdir $(OUTPUT)) $(BUILDDIR)/$(SONAME)
- $(Q)$(LN) $(LNFLAGS) -fs $(notdir $(OUTPUT)) $(BUILDDIR)/$(SHAREDLIBNAME)
+ $(Q)$(LN) $(LNFLAGS) -f -s $(notdir $(OUTPUT)) $(BUILDDIR)/$(SONAME)
+ $(Q)$(LN) $(LNFLAGS) -f -s $(notdir $(OUTPUT)) $(BUILDDIR)/$(SHAREDLIBNAME)
endif
# Default target
@@ -287,8 +287,8 @@ endef
# TODO: Is this scheme portable?
define install_shared_lib
$(INSTALL) $(INSTALLFLAGS) -m 755 $1 $2/$(notdir $1)
- $(LN) $(LNFLAGS) -fs $(notdir $1) $2/$(SONAME)
- $(LN) $(LNFLAGS) -fs $(notdir $1) $2/$(SHAREDLIBNAME)
+ $(LN) $(LNFLAGS) -f -s $(notdir $1) $2/$(SONAME)
+ $(LN) $(LNFLAGS) -f -s $(notdir $1) $2/$(SHAREDLIBNAME)
endef
# Install a file ($1) to the specified location ($2)