diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-05-15 12:50:04 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-05-15 12:50:04 +0000 |
commit | b7d87dd962de1c4e64bb8e1bc4ecac5494efa645 (patch) | |
tree | 4ca3dbb4d917aa1371aeb83648c05099f7685645 /package | |
parent | f69be807b5c16f075293251df1396238132c1ad9 (diff) | |
download | buildroot-novena-b7d87dd962de1c4e64bb8e1bc4ecac5494efa645.tar.gz buildroot-novena-b7d87dd962de1c4e64bb8e1bc4ecac5494efa645.zip |
- repvik writes: e2fsprogs install several duplicate binaries that act slightly differently depending on what name they're called as. They can safely be removed and replaced with symlinks. This saves 480kb space.
Closes #1341
Diffstat (limited to 'package')
-rw-r--r-- | package/e2fsprogs/e2fsprogs.mk | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/package/e2fsprogs/e2fsprogs.mk b/package/e2fsprogs/e2fsprogs.mk index 7867403b6..e8af6200f 100644 --- a/package/e2fsprogs/e2fsprogs.mk +++ b/package/e2fsprogs/e2fsprogs.mk @@ -24,7 +24,7 @@ $(E2FSPROGS_DIR)/.unpacked: $(DL_DIR)/$(E2FSPROGS_SOURCE) $(E2FSPROGS_CAT) $(DL_DIR)/$(E2FSPROGS_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - toolchain/patch-kernel.sh $(E2FSPROGS_DIR) package/e2fsprogs/ e2fsprogs\*.patch $(CONFIG_UPDATE) $(E2FSPROGS_DIR)/config - touch $(E2FSPROGS_DIR)/.unpacked + touch $@ $(E2FSPROGS_DIR)/.configured: $(E2FSPROGS_DIR)/.unpacked (cd $(E2FSPROGS_DIR); rm -rf config.cache; \ @@ -55,7 +55,7 @@ $(E2FSPROGS_DIR)/.configured: $(E2FSPROGS_DIR)/.unpacked --without-catgets $(DISABLE_NLS) \ $(DISABLE_LARGEFILE) \ ); - touch $(E2FSPROGS_DIR)/.configured + touch $@ $(E2FSPROGS_DIR)/$(E2FSPROGS_BINARY): $(E2FSPROGS_DIR)/.configured $(MAKE1) PATH=$(TARGET_PATH) -C $(E2FSPROGS_DIR) @@ -68,6 +68,14 @@ $(E2FSPROGS_DIR)/$(E2FSPROGS_BINARY): $(E2FSPROGS_DIR)/.configured $(TARGET_DIR)/$(E2FSPROGS_TARGET_BINARY): $(E2FSPROGS_DIR)/$(E2FSPROGS_BINARY) $(MAKE1) PATH=$(TARGET_PATH) DESTDIR=$(TARGET_DIR) -C $(E2FSPROGS_DIR) install + rm -rf ${TARGET_DIR}/sbin/mkfs.ext[23] ${TARGET_DIR}/sbin/fsck.ext[23] \ + ${TARGET_DIR}/sbin/findfs ${TARGET_DIR}/sbin/tune2fs + ln -sf mke2fs ${TARGET_DIR}/sbin/mkfs.ext2 + ln -sf mke2fs ${TARGET_DIR}/sbin/mkfs.ext3 + ln -sf e2fsck ${TARGET_DIR}/sbin/fsck.ext2 + ln -sf e2fsck ${TARGET_DIR}/sbin/fsck.ext3 + ln -sf e2label ${TARGET_DIR}/sbin/tune2fs + ln -sf e2label ${TARGET_DIR}/sbin/findfs rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \ $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc touch -c $(TARGET_DIR)/$(E2FSPROGS_TARGET_BINARY) |