diff options
author | Florian Weimer <fweimer@redhat.com> | 2018-08-17 11:35:42 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2018-08-17 11:35:42 +0200 |
commit | 93a2584cd2ffb2a6e4b17682ba250889059f5d8b (patch) | |
tree | f8c1c4c07e55613f1c75d1f023c402336b37391e /Makeconfig | |
parent | f6f275d2d92003fdd53c4fd26c32466f64052b95 (diff) | |
download | glibc-93a2584cd2ffb2a6e4b17682ba250889059f5d8b.zip glibc-93a2584cd2ffb2a6e4b17682ba250889059f5d8b.tar.gz glibc-93a2584cd2ffb2a6e4b17682ba250889059f5d8b.tar.bz2 |
Makeconfig (ASFLAGS): Always append required assembler flags
Otherwise, it is impossible to set ASFLAGS differently from CFLAGS
without also overriding essential flags such as -Wa,--noexecstack.
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1047,7 +1047,7 @@ endif ifndef ASFLAGS ASFLAGS := $(filter -g% -fdebug-prefix-map=%,$(CFLAGS)) endif -ASFLAGS += -Werror=undef $(ASFLAGS-config) $(asflags-cpu) +override ASFLAGS += -Werror=undef $(ASFLAGS-config) $(asflags-cpu) ifndef BUILD_CC BUILD_CC = $(CC) |