summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Walle <bernhard@bwalle.de>2012-01-19 22:18:19 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2012-01-19 22:20:05 +0100
commit4820d74a849c1d2f9884668e82f0e74489db1bca (patch)
tree7e280556165c9bf501f15ae55e3e7bc890982392
parent36a4cae44b76743190d9f74a01db6053cd788ba0 (diff)
downloadptxdist-4820d74a849c1d2f9884668e82f0e74489db1bca.tar.gz
ptxdist-4820d74a849c1d2f9884668e82f0e74489db1bca.tar.xz
Fix usage of fakeroot on Darwin
The extension of shared libraries on Darwin is .dylib, not .so. Because fakeroot doesn't need specification of the pre-load library but finds the library automatically, remove calling fakeroot with -l. Signed-off-by: Bernhard Walle <bernhard@bwalle.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/pre/Rules.make3
1 files changed, 2 insertions, 1 deletions
diff --git a/rules/pre/Rules.make b/rules/pre/Rules.make
index c531a50b5..1d6da52da 100644
--- a/rules/pre/Rules.make
+++ b/rules/pre/Rules.make
@@ -13,7 +13,8 @@ GNU_BUILD := $(shell $(SCRIPTSDIR)/autoconf/config.guess)
GNU_HOST := $(shell echo $(GNU_BUILD) | sed s/-[a-zA-Z0-9_]*-/-host-/)
INSTALL := install
-FAKEROOT := $(PTXDIST_SYSROOT_HOST)/bin/fakeroot -l $(PTXDIST_SYSROOT_HOST)/lib/libfakeroot.so
+
+FAKEROOT := $(PTXDIST_SYSROOT_HOST)/bin/fakeroot
CHECK_PIPE_STATUS := \
for i in "$${PIPESTATUS[@]}"; do [ $$i -gt 0 ] && { \