diff options
author | Nigel Kukard <nkukard@lbsd.net> | 2008-04-06 13:14:07 +0000 |
---|---|---|
committer | Nigel Kukard <nkukard@lbsd.net> | 2008-04-06 13:14:07 +0000 |
commit | 942be8ba84610f499558626ebdaff2c0c8be8466 (patch) | |
tree | 22505a6e1ada3c3ad52bde29ddf5d49e946c8fd5 /target/cpio/cpioroot.mk | |
parent | 296a0308e06b489bb2d30f06d38ad45b87c2eefe (diff) | |
download | buildroot-novena-942be8ba84610f499558626ebdaff2c0c8be8466.tar.gz buildroot-novena-942be8ba84610f499558626ebdaff2c0c8be8466.zip |
Fixed typo in cpioroot, we're working with CPIO_BASE not TAR_TARGET
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 c18261e27..89bb9a52e 100644 --- a/target/cpio/cpioroot.mk +++ b/target/cpio/cpioroot.mk @@ -49,7 +49,7 @@ ifneq ($(BR2_HAVE_INFOPAGES),y) endif $(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)) + rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(CPIO_BASE)) touch $(PROJECT_BUILD_DIR)/.fakeroot.00000 cat $(PROJECT_BUILD_DIR)/.fakeroot* > $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(CPIO_BASE)) echo "chown -R 0:0 $(TARGET_DIR)" >> $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(CPIO_BASE)) |