diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-11-24 22:12:13 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-11-24 22:12:13 +0100 |
commit | 7dccbc44a84f371694ab7b38833908125df315d9 (patch) | |
tree | ea2e6d5d11befe080b173e187b7ef3a8df1c0f20 | |
parent | 8101c9a357d110d7b9055fc13e77f9775ea1b1e6 (diff) | |
download | buildroot-novena-7dccbc44a84f371694ab7b38833908125df315d9.tar.gz buildroot-novena-7dccbc44a84f371694ab7b38833908125df315d9.zip |
Makefile: really adjust kernel modules strip invocation
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -419,7 +419,7 @@ ifneq ($(BR2_HAVE_DOCUMENTATION),y) endif find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIPCMD) 2>/dev/null || true find $(TARGET_DIR)/lib/modules -type f -name '*.ko' | \ - xargs -r $(STRIPCMD) -R .comment -R .note -g --strip-unneeded + xargs -r $(STRIPCMD) $(STRIP_STRIP_UNNEEDED) mkdir -p $(TARGET_DIR)/etc # Mandatory configuration file and auxilliary cache directory |