diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-07-19 09:55:13 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-07-27 22:48:13 +0200 |
commit | 8a1468be5b0c6638ce6da8b41ae3a6c3ca788575 (patch) | |
tree | d5a2c39fa417b39143c7db8c3136736ffb897823 | |
parent | 36830f2ff42854306b37f93a1a1abdef57bd292f (diff) | |
download | buildroot-novena-8a1468be5b0c6638ce6da8b41ae3a6c3ca788575.tar.gz buildroot-novena-8a1468be5b0c6638ce6da8b41ae3a6c3ca788575.zip |
icu: add quotes around TARGET_CXX
Now that TARGET_CXX contains a --sysroot= option and therefore spaces,
it needs to be used with quotes.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/icu/icu.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/icu/icu.mk b/package/icu/icu.mk index 17f153e64..7961b0792 100644 --- a/package/icu/icu.mk +++ b/package/icu/icu.mk @@ -33,7 +33,7 @@ $(ICU_DIR)/.configured: $(ICU_HOST_DIR)/.configured (cd $(ICU_DIR); rm -rf config.cache; \ $(TARGET_CONFIGURE_OPTS) \ $(TARGET_CONFIGURE_ARGS) \ - CXX=$(TARGET_CXX) \ + CXX="$(TARGET_CXX)" \ ./configure $(QUIET) \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ |