Skip to content

Commit 7b5b930

Browse files
authored
Fix truncated assembler checks
1 parent 454edd7 commit 7b5b930

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.system

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ifeq ($(HOSTARCH), amd64)
1515
HOSTARCH=x86_64
1616
endif
1717

18-
HAVE_GAS := $(shell as -v < /dev/null 2>&1 | grep GNU 2>&1 >/dev/null)
18+
HAVE_GAS := $(shell as -v < /dev/null 2>&1 | grep GNU 2>&1 >/dev/null ; echo $$?)
1919

2020
# Catch conflicting usage of ARCH in some BSD environments
2121
ifeq ($(ARCH), amd64)

0 commit comments

Comments
 (0)