package: s/$(STRIP)/$(STRIPCMD)/

This commit is contained in:
Peter Korsgaard 2008-04-25 13:43:00 +00:00
parent a25b193708
commit 5a390fda4d
4 changed files with 5 additions and 5 deletions

View File

@ -60,7 +60,7 @@ $(DUMMY_DIR)/$(DUMMY_BINARY): $(DUMMY_DIR)/.configured
# target root directory, to not waste valuable flash space.
$(TARGET_DIR)/$(DUMMY_TARGET_BINARY): $(DUMMY_DIR)/$(DUMMY_BINARY)
cp -dpf $(DUMMY_DIR)/dummy $@
$(STRIP) --strip-unneeded $@
$(STRIPCMD) --strip-unneeded $@
# Main rule which shows which other packages must be installed before the dummy
# package is installed. This to ensure that all depending libraries are

View File

@ -50,7 +50,7 @@ $(TARGET_DIR)/usr/bin/oprofiled: $(OPROFILE_DIR)/daemon/oprofiled
$(INSTALL) -m 644 $(OPROFILE_DIR)/libregex/stl.pat $(TARGET_DIR)/usr/share/oprofile
$(INSTALL) -m 755 $(OPROFILE_DIR)/utils/opcontrol $(TARGET_DIR)/usr/bin
$(INSTALL) -m 755 $(addprefix $(OPROFILE_DIR)/, $(OPROFILE_BINARIES)) $(TARGET_DIR)/usr/bin
$(STRIP) --strip-unneeded $(addprefix $(TARGET_DIR)/usr/bin/, $(notdir $(OPROFILE_BINARIES)))
$(STRIPCMD) --strip-unneeded $(addprefix $(TARGET_DIR)/usr/bin/, $(notdir $(OPROFILE_BINARIES)))
touch -c $@
oprofile: uclibc popt binutils_target $(TARGET_DIR)/usr/bin/oprofiled

View File

@ -260,13 +260,13 @@ $(TARGET_DIR)/usr/lib/libQtCore.so.4: $(STAGING_DIR)/usr/lib/libQtCore.la
cp -dpf $(STAGING_DIR)/usr/lib/fonts/micro*.qpf $(TARGET_DIR)/usr/lib/fonts
ifeq ($(BR2_PACKAGE_QTOPIA4_SHARED),y)
cp -dpf $(STAGING_DIR)/usr/lib/libQt*.so.* $(TARGET_DIR)/usr/lib/
-$(STRIP) --strip-unneeded $(TARGET_DIR)/usr/lib/libQt*.so.*
-$(STRIPCMD) --strip-unneeded $(TARGET_DIR)/usr/lib/libQt*.so.*
endif
# Install image plugins if they are built
if [ -d $(STAGING_DIR)/usr/plugins/imageformats ]; then \
mkdir -p $(TARGET_DIR)/usr/plugins; \
cp -dpfr $(STAGING_DIR)/usr/plugins/imageformats $(TARGET_DIR)/usr/plugins/; \
$(STRIP) --strip-unneeded $(TARGET_DIR)/usr/plugins/imageformats/*; \
$(STRIPCMD) --strip-unneeded $(TARGET_DIR)/usr/plugins/imageformats/*; \
fi
ifneq ($(BR2_PACKAGE_QTOPIA4_SQL),y)
# Remove Sql libraries, not needed

View File

@ -15,7 +15,7 @@ $(WEBIF_DIR)/.unpacked:
$(WEBIF_DIR)/.built: $(WEBIF_DIR)/.unpacked
$(TARGET_CC) $(TARGET_CFLAGS) -o $(WEBIF_DIR)/webif-page $(WEBIF_SOURCE)/src/webif-page.c
$(TARGET_CC) $(TARGET_CFLAGS) -o $(WEBIF_DIR)/bstrip $(WEBIF_SOURCE)/src/bstrip.c
$(STRIP) --strip-unneeded $(WEBIF_DIR)/webif-page $(WEBIF_DIR)/bstrip
$(STRIPCMD) --strip-unneeded $(WEBIF_DIR)/webif-page $(WEBIF_DIR)/bstrip
touch $@
$(TARGET_DIR)/www/webif.css: $(WEBIF_DIR)/.built