diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-25 11:13:20 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-25 11:13:20 +0000 |
commit | 3649fd504d0a07c8cafe9ebc67b3ed84e85a2312 (patch) | |
tree | d6a9f3b4d29cdabc0056d32ef0faf9208a89f184 /target/cpio/cpioroot.mk | |
parent | 8d41a4be9b6f53f658941de6a439ae11d6077e03 (diff) | |
download | buildroot-novena-3649fd504d0a07c8cafe9ebc67b3ed84e85a2312.tar.gz buildroot-novena-3649fd504d0a07c8cafe9ebc67b3ed84e85a2312.zip |
- workaround for broken external toolchains
Diffstat (limited to 'target/cpio/cpioroot.mk')
-rw-r--r-- | target/cpio/cpioroot.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/cpio/cpioroot.mk b/target/cpio/cpioroot.mk index 24181d6b0..b1d117c08 100644 --- a/target/cpio/cpioroot.mk +++ b/target/cpio/cpioroot.mk @@ -44,7 +44,7 @@ endif ifneq ($(BR2_HAVE_INFOPAGES),y) @rm -rf $(TARGET_DIR)/usr/info endif - $(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null + $(if $(TARGET_LDCONFIG),test -x $(TARGET_LDCONFIG) && $(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null) # Use fakeroot to pretend all target binaries are owned by root rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(TAR_TARGET)) touch $(PROJECT_BUILD_DIR)/.fakeroot.00000 |