diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-11-04 20:17:03 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-11-04 20:17:03 +0000 |
commit | 1da8fd9223c5a06236d4053582184790424592c2 (patch) | |
tree | 550f0417201e205319a36e96bfae37e3442007a9 /Makefile.in | |
parent | bcd949c7f80ccf66c8ef869367a9b33dbb51a261 (diff) |
mips64 patch from Atsushi Nemoto:
Add selection of 3 ABI.
CPU_CFLAGS is needed to generate correct sysnum.h.
Fix test/Rules.mak.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index d6f8cf72e..8eaa7cffb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -94,7 +94,7 @@ headers: include/bits/uClibc_config.h cd $(top_builddir); \ tmp=`mktemp include/bits/sysnum.h.XXXXXX 2>/dev/null`; \ [ -z "$$tmp" ] && tmp='include/bits/sysnum.h.new'; \ - top_builddir=. CC="$(CC)" $(SHELL) extra/scripts/gen_bits_syscall_h.sh > $$tmp; \ + top_builddir=. CC="$(CC) $(CPU_CFLAGS)" $(SHELL) extra/scripts/gen_bits_syscall_h.sh > $$tmp; \ if cmp include/bits/sysnum.h $$tmp >/dev/null 2>&1; then \ $(RM) $$tmp; \ else \ |