summaryrefslogtreecommitdiff
path: root/package/musl
diff options
context:
space:
mode:
authorJörg Krause <jkrause@posteo.de>2014-12-09 02:44:36 +0100
committerPeter Korsgaard <peter@korsgaard.com>2014-12-09 14:29:52 +0100
commit424abf2f1b238cfe822a8457497ca8c89536108b (patch)
tree440adaf46ed3322ca96dca47a5e05cee2fc2b21e /package/musl
parentc492abf96e9e022d717e1902501056b7b614c388 (diff)
package/musl: remove obsolete setting of prefix
Using the config option '--libdir=/lib' makes the setting of prefix to an empty path obsolete in MUSL_INSTALL_TARGET_CMDS. Signed-off-by: Jörg Krause <jkrause@posteo.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/musl')
-rw-r--r--package/musl/musl.mk4
1 files changed, 1 insertions, 3 deletions
diff --git a/package/musl/musl.mk b/package/musl/musl.mk
index 3a45575a1..1f1af05d6 100644
--- a/package/musl/musl.mk
+++ b/package/musl/musl.mk
@@ -40,11 +40,9 @@ define MUSL_INSTALL_STAGING_CMDS
DESTDIR=$(STAGING_DIR) install-libs install-tools install-headers
endef
-# prefix is set to an empty value to get the C library installed in
-# /lib and not /usr/lib
define MUSL_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
- DESTDIR=$(TARGET_DIR) prefix= install-libs
+ DESTDIR=$(TARGET_DIR) install-libs
$(RM) $(addprefix $(TARGET_DIR)/lib/,crt1.o crtn.o crti.o Scrt1.o)
endef