diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-09-25 12:34:09 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-09-25 12:34:09 +0000 |
commit | 26cdd6f6c0e8c3b8efb4d01faacff8a979f40c47 (patch) | |
tree | e677a7af9dfdef5d35f362defeadb12f61aedd69 /package/netkittelnet/netkittelnet.mk | |
parent | 8eaa5859157a272c668219208374e7acfb5db9f0 (diff) | |
download | buildroot-novena-26cdd6f6c0e8c3b8efb4d01faacff8a979f40c47.tar.gz buildroot-novena-26cdd6f6c0e8c3b8efb4d01faacff8a979f40c47.zip |
- make sure that configure doesn't see a wrong cache
Diffstat (limited to 'package/netkittelnet/netkittelnet.mk')
-rw-r--r-- | package/netkittelnet/netkittelnet.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/netkittelnet/netkittelnet.mk b/package/netkittelnet/netkittelnet.mk index 10fbdcbff..58bdbac2e 100644 --- a/package/netkittelnet/netkittelnet.mk +++ b/package/netkittelnet/netkittelnet.mk @@ -27,8 +27,9 @@ $(NETKITTELNET_DIR)/.unpacked: $(DL_DIR)/$(NETKITTELNET_SOURCE) touch $(NETKITTELNET_DIR)/.unpacked $(NETKITTELNET_DIR)/.configured: $(NETKITTELNET_DIR)/.unpacked - (cd $(NETKITTELNET_DIR); PATH=$(TARGET_PATH) CC=$(TARGET_CC) \ - ./configure --installroot=$(TARGET_DIR) --with-c-compiler=$(TARGET_CC) \ + (cd $(NETKITTELNET_DIR); rm -f config.cache; \ + PATH=$(TARGET_PATH) CC=$(TARGET_CC) \ + ./configure --installroot=$(TARGET_DIR) --with-c-compiler=$(TARGET_CC) \ ) touch $(NETKITTELNET_DIR)/.configured |