diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-08-11 22:26:56 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-08-11 22:26:56 +0000 |
commit | a2e5113512e893029a6b8c52b23ab0349ca76071 (patch) | |
tree | a303c3266b1a49f104497c3b7b86b226ab99bbbd /package/dmalloc/dmalloc.mk | |
parent | 927c01dd4a45623df173880c2b54ec8024cd8964 (diff) | |
download | buildroot-a2e5113512e893029a6b8c52b23ab0349ca76071.tar.gz buildroot-a2e5113512e893029a6b8c52b23ab0349ca76071.zip |
Use STAGING_DIR/usr/lib instead of STAGING_DIR/lib
Diffstat (limited to 'package/dmalloc/dmalloc.mk')
-rw-r--r-- | package/dmalloc/dmalloc.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/dmalloc/dmalloc.mk b/package/dmalloc/dmalloc.mk index daff9f8e20..e93bf76794 100644 --- a/package/dmalloc/dmalloc.mk +++ b/package/dmalloc/dmalloc.mk @@ -58,7 +58,7 @@ $(DMALLOC_DIR)/.configured: $(DMALLOC_DIR)/.unpacked --sysconfdir=/etc \ --datadir=/usr/share \ --localstatedir=/var \ - --includedir=/include \ + --includedir=/usr/include \ --mandir=/usr/man \ --infodir=/usr/info \ --enable-shlib \ @@ -84,14 +84,14 @@ $(TARGET_DIR)/$(DMALLOC_TARGET_BINARY): $(DMALLOC_DIR)/$(DMALLOC_BINARY) dmalloc: uclibc $(TARGET_DIR)/$(DMALLOC_TARGET_BINARY) -dmalloc-clean: +dmalloc-clean: rm -f $(TARGET_DIR)/usr/lib/libdmalloc* rm -f $(STAGING_DIR)/usr/lib/libdmalloc* - rm -f $(STAGING_DIR)/include/dmalloc.h + rm -f $(STAGING_DIR)/usr/include/dmalloc.h rm -f $(TARGET_DIR)/$(DMALLOC_TARGET_BINARY) $(MAKE) -C $(DMALLOC_DIR) clean -dmalloc-dirclean: +dmalloc-dirclean: rm -rf $(DMALLOC_DIR) |