Fix truncated assembler checks
This commit is contained in:
parent
454edd741c
commit
7b5b93037d
|
@ -15,7 +15,7 @@ ifeq ($(HOSTARCH), amd64)
|
||||||
HOSTARCH=x86_64
|
HOSTARCH=x86_64
|
||||||
endif
|
endif
|
||||||
|
|
||||||
HAVE_GAS := $(shell as -v < /dev/null 2>&1 | grep GNU 2>&1 >/dev/null)
|
HAVE_GAS := $(shell as -v < /dev/null 2>&1 | grep GNU 2>&1 >/dev/null ; echo $$?)
|
||||||
|
|
||||||
# Catch conflicting usage of ARCH in some BSD environments
|
# Catch conflicting usage of ARCH in some BSD environments
|
||||||
ifeq ($(ARCH), amd64)
|
ifeq ($(ARCH), amd64)
|
||||||
|
|
Loading…
Reference in New Issue