summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2005-01-16 09:49:14 +0000
committerPeter Kjellerstedt <peter.kjellerstedt@axis.com>2005-01-16 09:49:14 +0000
commit92dbe1082d28e6c30c4244e9228963debcb96a2a (patch)
tree01bb1ead2925a9470e1e47489f4a3035217172fb /Makefile
parentcb441c366286aa53364f52ac2bdb0710be28f830 (diff)
Made it possible to make utils when $(CROSS) or $(CC) contain spaces.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2b2dd84d5..f02b1330d 100644
--- a/Makefile
+++ b/Makefile
@@ -243,14 +243,14 @@ endif
.PHONY: utils
ifeq ($(strip $(HAVE_SHARED)),y)
utils:
- $(MAKE) CROSS=$(CROSS) CC=$(CC) -C utils
+ $(MAKE) CROSS="$(CROSS)" CC="$(CC)" -C utils
else
utils: dummy
endif
# Installs helper applications, such as 'ldd' and 'ldconfig'
install_utils: utils
- $(MAKE) CROSS=$(CROSS) CC=$(CC) -C utils install
+ $(MAKE) CROSS="$(CROSS)" CC="$(CC)" -C utils install
#ifeq ($(strip $(UCLIBC_HAS_LOCALE)),y)
# @$(MAKE) -C libc/misc/wchar iconv.target
# $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)/usr/bin;