Fix -Wa,q typo

pull/200/head
Jeffrey Walton 2016-06-16 01:06:30 -04:00
parent 58840a030b
commit 3d8a08f6b6
1 changed files with 4 additions and 3 deletions

View File

@ -167,9 +167,10 @@ endif
endif
# Tell MacPorts GCC to use Clang integrated assembler
ifeq ($(GCC_COMPILER)$(MACPORTS_COMPILER),11)
ifneq ($(findstring -Wa,q,$(CXXFLAGS)),-Wa,q)
CXXFLAGS += -Wa,q
IS_GAS=0
ifeq ($(GCC_COMPILER)$(MACPORTS_COMPILER)$(IS_GAS),110)
ifneq ($(findstring -Wa,-q,$(CXXFLAGS)),-Wa,-q)
CXXFLAGS += -Wa,-q
endif
endif