diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-07-01 12:04:28 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-07-01 12:04:28 +0000 |
commit | 926646d9cab1bf66292eec51091d836f620b5e57 (patch) | |
tree | a6eb55101469af7e2bcd9c28fa254e54ec13f22f | |
parent | 555a7f5e50ef3ea60920bddfd35b9945bf78c5eb (diff) | |
download | buildroot-novena-926646d9cab1bf66292eec51091d836f620b5e57.tar.gz buildroot-novena-926646d9cab1bf66292eec51091d836f620b5e57.zip |
Makefile: remove target pkgconfig files if BR2_HAVE_DEVFILES isn't enabled
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -332,7 +332,7 @@ target-devfiles: ifeq ($(BR2_HAVE_DEVFILES),y) ( scripts/copy.sh $(STAGING_DIR) $(TARGET_DIR) ) else - rm -rf $(TARGET_DIR)/usr/include + rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/lib/pkgconfig find $(TARGET_DIR)/usr/lib -name '*.a' -delete find $(TARGET_DIR)/lib -name '*.a' -delete find $(TARGET_DIR)/usr/lib -name '*.la' -delete |