diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-22 04:42:22 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-22 04:42:22 +0000 |
commit | 6ef2675511472c132fbff1e9121b86b004842b7a (patch) | |
tree | 89b95ff3c39c0420192fe0daf222b7d3322ee065 /Makefile | |
parent | a156c18dd5107cf61b1304f40d0f29f570c257ef (diff) |
Make sure the utils build gets the setting for CROSS.
Diffstat (limited to 'Makefile')
-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) -C utils + $(MAKE) CROSS=$(CROSS) -C utils else utils: dummy endif install_utils: utils - $(MAKE) -C utils install + $(MAKE) CROSS=$(CROSS) -C utils install #ifeq ($(strip $(UCLIBC_HAS_LOCALE)),y) # @$(MAKE) -C libc/misc/wchar iconv.target # $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)/usr/bin; |