diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2015-02-27 00:13:44 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-02-27 00:13:44 +0100 |
commit | b1f83fefcb7fcc072e689d4f5c8a70a22e8410a2 (patch) | |
tree | 5b2a62a9a9e3e0a6cb93b95655388e7ee07f4ddd | |
parent | b3d1a543f7338e0622c7ac7b45e7c96d39a9387b (diff) | |
download | buildroot-b1f83fefcb7fcc072e689d4f5c8a70a22e8410a2.tar.gz buildroot-b1f83fefcb7fcc072e689d4f5c8a70a22e8410a2.zip |
directfb-examples: drop explicit stripping when installing into target
Stripping is globally handled by target-finalize (if enabled), so drop it
from here.
Reported-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/directfb-examples/directfb-examples.mk | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/package/directfb-examples/directfb-examples.mk b/package/directfb-examples/directfb-examples.mk index 40afd8177f..3ba33b41f1 100644 --- a/package/directfb-examples/directfb-examples.mk +++ b/package/directfb-examples/directfb-examples.mk @@ -98,7 +98,6 @@ define DIRECTFB_EXAMPLES_INSTALL_TARGET_CMDS $(Q)mkdir -p $(TARGET_DIR)/usr/share/directfb-examples/fonts/ $(Q)for file in $(DIRECTFB_EXAMPLES_TARGETS_y); do \ cp -dpf $(STAGING_DIR)/$$file $(TARGET_DIR)/$$file; \ - $(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/$$file; \ done $(Q)cp -rdpf $(STAGING_DIR)/usr/share/directfb-examples/fonts/decker.ttf $(TARGET_DIR)/usr/share/directfb-examples/fonts/ $(Q)for file in $(DIRECTFB_EXAMPLES_FONT_y); do \ |