summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)