diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-07 21:04:31 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-07 21:04:31 +0000 |
commit | 32faf35112e5092a5657862a43aadf67d907dbd3 (patch) | |
tree | 2095b7b16aec761430e5bb0ff54d6f42c4412b5e /target/cpio | |
parent | f276b269181394b26fadcfcd5b768c1d4b57c405 (diff) | |
download | buildroot-novena-32faf35112e5092a5657862a43aadf67d907dbd3.tar.gz buildroot-novena-32faf35112e5092a5657862a43aadf67d907dbd3.zip |
Makefile: add target-finalize for common filesystem cleanup
And remove from each rootfs variant.
Diffstat (limited to 'target/cpio')
-rw-r--r-- | target/cpio/cpioroot.mk | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/target/cpio/cpioroot.mk b/target/cpio/cpioroot.mk index c02d0209d..08983ffd6 100644 --- a/target/cpio/cpioroot.mk +++ b/target/cpio/cpioroot.mk @@ -40,14 +40,6 @@ cpioroot-init: ln -s sbin/init $(TARGET_DIR)/init $(CPIO_BASE): host-fakeroot makedevs cpioroot-init - -@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIPCMD) 2>/dev/null || true -ifneq ($(BR2_HAVE_MANPAGES),y) - @rm -rf $(TARGET_DIR)/usr/man -endif -ifneq ($(BR2_HAVE_INFOPAGES),y) - @rm -rf $(TARGET_DIR)/usr/info -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 $(CPIO_BASE)) touch $(PROJECT_BUILD_DIR)/.fakeroot.00000 |