From: Peter Kjellerstedt Date: Sun, 16 Jan 2005 09:49:14 +0000 (-0000) Subject: Made it possible to make utils when $(CROSS) or $(CC) contain spaces. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=92dbe1082d28e6c30c4244e9228963debcb96a2a;p=uclinux-h8%2FuClibc.git Made it possible to make utils when $(CROSS) or $(CC) contain spaces. --- 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;