Skip to content

Commit 8278cbe

Browse files
authored
Merge pull request #1894 from pkubaj/patch-2
Use correct ARCH name on BSD powerpc64
2 parents 360374b + ea6d1b9 commit 8278cbe

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile.system

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ endif
1111

1212
# Catch conflicting usage of ARCH in some BSD environments
1313
ifeq ($(ARCH), amd64)
14-
override ARCH=x86_64
14+
override ARCH=x86_64
15+
else ifeq ($(ARCH), powerpc64)
16+
override ARCH=power
1517
endif
1618

1719
NETLIB_LAPACK_DIR = $(TOPDIR)/lapack-netlib

0 commit comments

Comments
 (0)