summaryrefslogtreecommitdiffstats
path: root/target/cloop
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-08-21 14:32:38 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-08-21 14:32:38 +0000
commit1afb8226cbaf011f81158b63c2c169ce05842d21 (patch)
treee98b0ceb30d7dc264513db121b16dab45282c9a3 /target/cloop
parent3cca2a310d5e6a793784c9c5c28076f161713077 (diff)
downloadbuildroot-novena-1afb8226cbaf011f81158b63c2c169ce05842d21.tar.gz
buildroot-novena-1afb8226cbaf011f81158b63c2c169ce05842d21.zip
- start to use BR2_HAVE_MANPAGES and BR2_HAVE_INFOPAGES
- always error out if ldconfig for the target fails (was inconsistent..)
Diffstat (limited to 'target/cloop')
-rw-r--r--target/cloop/cloop.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/target/cloop/cloop.mk b/target/cloop/cloop.mk
index f092f0b13..e03fe2516 100644
--- a/target/cloop/cloop.mk
+++ b/target/cloop/cloop.mk
@@ -75,9 +75,13 @@ check-tools:
clooproot: cloop check-tools $(IMAGE).cramfs ### cramfsroot
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
+ifneq ($(BR2_HAVE_MANPAGES),y)
@rm -rf $(TARGET_DIR)/usr/man
@rm -rf $(TARGET_DIR)/usr/share/man
+endif
+ifneq ($(BR2_HAVE_INFOPAGES),y)
@rm -rf $(TARGET_DIR)/usr/info
+endif
@rmdir -p --ignore-fail-on-non-empty $(TARGET_DIR)/usr/share
### $(CLOOP_DIR)/create_compressed_fs -q -D target/default/device_table.txt $(TARGET_DIR) $(CLOOP_TARGET)
## mkisofs -r $(TARGET_DIR) | $(CLOOP_DIR)/create_compressed_fs - 65536 > $(CLOOP_TARGET)