diff options
author | Jakub Jelinek <jakub@redhat.com> | 2009-07-22 13:23:08 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2009-07-22 14:41:23 +0200 |
commit | 3aba072d90b500e76f7f1cb06c659fb3cf02c6b8 (patch) | |
tree | 7fe239958444358640691c72f8af411534a2f6d4 /Makeconfig | |
parent | 64322469ecb5746709e560f36dbc740c1300f978 (diff) |
Undefine __i686 on x86.
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makeconfig b/Makeconfig index 9f134cc137..2ebe184224 100644 --- a/Makeconfig +++ b/Makeconfig @@ -780,12 +780,12 @@ endif # The assembler can generate debug information too. ifndef ASFLAGS ifeq ($(have-cpp-asm-debuginfo),yes) -ASFLAGS := $(filter -g%,$(CFLAGS)) +ASFLAGS = $(filter -g%,$(CFLAGS)) else -ASFLAGS := +ASFLAGS = endif endif -ASFLAGS += $(ASFLAGS-config) $(asflags-cpu) +ASFLAGS += $(ASFLAGS-config) $(asflags-cpu) $(sysdep-ASFLAGS) ifndef BUILD_CC BUILD_CC = $(CC) |