diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-10 08:30:15 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-10 08:30:15 +0000 |
commit | 8ec9199f17c54e081a0bd120a0cdf8263c83d15d (patch) | |
tree | 5d63e8678c38f031ec358832515b02ad22d5fc5d /package/which/which.mk | |
parent | fbde74ea621e8dc7466daa8b2d17b3f4f7b59d1b (diff) | |
download | buildroot-novena-8ec9199f17c54e081a0bd120a0cdf8263c83d15d.tar.gz buildroot-novena-8ec9199f17c54e081a0bd120a0cdf8263c83d15d.zip |
- quote HOST_CC.
Allows for passing flags along HOST_CC which is sometimes needed on certain
architectures.
Diffstat (limited to 'package/which/which.mk')
-rw-r--r-- | package/which/which.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/which/which.mk b/package/which/which.mk index 5cb05766c..1beab7bee 100644 --- a/package/which/which.mk +++ b/package/which/which.mk @@ -20,7 +20,7 @@ $(WHICH_DIR)/.unpacked: $(DL_DIR)/$(WHICH_SOURCE) $(WHICH_DIR)/.configured: $(WHICH_DIR)/.unpacked (cd $(WHICH_DIR); rm -rf config.cache; \ - $(TARGET_CONFIGURE_OPTS) CC_FOR_BUILD=$(HOSTCC) \ + $(TARGET_CONFIGURE_OPTS) CC_FOR_BUILD="$(HOSTCC)" \ CFLAGS="$(TARGET_CFLAGS)" \ ./configure \ --target=$(GNU_TARGET_NAME) \ |