summaryrefslogtreecommitdiff
path: root/makefiles/Makefile.top
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-04-03 02:14:15 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-04-03 02:14:15 +0000
commitc78657db5316dcf8c99d887884f46cba6c52d646 (patch)
tree6ff1ab506376f0b547933b03aeedd68e53e1712b /makefiles/Makefile.top
parent7b76ca6149cbca29d708081552b91db0af6c280a (diff)
downloadbuildsystem-c78657db5316dcf8c99d887884f46cba6c52d646.tar.gz
buildsystem-c78657db5316dcf8c99d887884f46cba6c52d646.tar.bz2
Make symlinks relative
svn path=/trunk/tools/buildsystem/; revision=7038
Diffstat (limited to 'makefiles/Makefile.top')
-rw-r--r--makefiles/Makefile.top4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefiles/Makefile.top b/makefiles/Makefile.top
index 5fb907b..e0f2e01 100644
--- a/makefiles/Makefile.top
+++ b/makefiles/Makefile.top
@@ -269,9 +269,9 @@ endef
# TODO: Is this scheme portable?
define install_shared_lib
$(INSTALL) $(INSTALLFLAGS) -m 755 $1 $2/$(notdir $1).$(COMPONENT_VERSION)
- $(LN) $(LNFLAGS) -fs $2/$(notdir $1).$(COMPONENT_VERSION) \
+ $(LN) $(LNFLAGS) -fs $(notdir $1).$(COMPONENT_VERSION) \
$2/$(notdir $1).$(major-version)
- $(LN) $(LNFLAGS) -fs $2/$(notdir $1).$(COMPONENT_VERSION) $2/$(notdir $1)
+ $(LN) $(LNFLAGS) -fs $(notdir $1).$(COMPONENT_VERSION) $2/$(notdir $1)
endef
# Install a file ($1) to the specified location ($2)