Browse Source
Merge pull request #1 from kavanabhat/as_check_fix
Fix truncated assembler checks used for Power10 kernel build
tags/v0.3.19
kavanabhat
GitHub
4 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Makefile.system
|
|
|
@@ -15,7 +15,7 @@ ifeq ($(HOSTARCH), amd64) |
|
|
|
HOSTARCH=x86_64 |
|
|
|
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 |
|
|
|
ifeq ($(ARCH), amd64) |
|
|
|
|