diff options
| author | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-23 18:47:56 +0000 | 
|---|---|---|
| committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-23 18:47:56 +0000 | 
| commit | eb6d6eb1b6778b71287399763740c77ec445fd2a (patch) | |
| tree | 6dcf03102cb8d7253cd883da231995099b0c6d0b | |
| parent | da94c87d532e9cf23445dad7b78072080a524cd1 (diff) | |
Make sure we use the right CC setting when building utils.
Not doing so was breaking the buildroot softfloat arm build.
| -rw-r--r-- | Makefile | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -285,13 +285,13 @@ endif  .PHONY: utils  ifeq ($(strip $(HAVE_SHARED)),y)  utils: -	$(MAKE) CROSS=$(CROSS) -C utils +	$(MAKE) CROSS=$(CROSS) CC=$(CC) -C utils  else  utils: dummy  endif  install_utils: utils -	$(MAKE) CROSS=$(CROSS) -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; | 
