diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-17 08:03:59 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-17 08:03:59 +0000 |
commit | ef7784a62d2ecd681b37aee7040e71bbb34a51cd (patch) | |
tree | 92daacce553b174393de87921912ada04a4ecb6e /make/ext2root.mk | |
parent | 8e081ea611483c35a17e0a5c3e80a943b27ab0a2 (diff) |
standardize handling of GNU configure scripts
-Erik
Diffstat (limited to 'make/ext2root.mk')
-rw-r--r-- | make/ext2root.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make/ext2root.mk b/make/ext2root.mk index 1e4b9f133..ad0dd1db5 100644 --- a/make/ext2root.mk +++ b/make/ext2root.mk @@ -36,6 +36,7 @@ GENEXT2_REALSIZE=$(subst total,, $(shell du $(TARGET_DIR) -s -c -k | grep total GENEXT2_SIZE=$(shell expr $(GENEXT2_REALSIZE) + $(GENEXT2_ADDTOROOTSIZE)) # We currently add about 400 device nodes, so add that into the total GENEXT2_INODES=$(shell expr $(shell find $(TARGET_DIR) | wc -l) + 400) +GENEXT2_SIZE=100000 ext2root: genext2fs -@find $(TARGET_DIR)/lib -type f -name \*.so\* | xargs $(STRIP) --strip-unneeded 2>/dev/null || true; @@ -46,7 +47,7 @@ ext2root: genext2fs ext2root-source: $(DL_DIR)/$(GENEXT2_SOURCE) ext2root-clean: - -make -C $(GENEXT2_DIR) clean + -$(MAKE) -C $(GENEXT2_DIR) clean ext2root-dirclean: rm -rf $(GENEXT2_DIR) |