diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-04-27 13:21:29 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-04-27 13:21:29 +0000 |
commit | f1aad50d1527d05af88eb958f69c93c71dd6aa37 (patch) | |
tree | 65c5a47c6e14a306f50a0f5e2b62b90cd7103f8f /emulators/cingb | |
parent | 26c5ec9d7f3400a128e7c248d096284fba9c93e9 (diff) | |
download | freebsd-ports-f1aad50d1527d05af88eb958f69c93c71dd6aa37.zip |
emulators/cingb: powerpc64 is also big-endian
Diffstat (limited to 'emulators/cingb')
-rw-r--r-- | emulators/cingb/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emulators/cingb/Makefile b/emulators/cingb/Makefile index 45266bab5e21..9fb5b1d1e057 100644 --- a/emulators/cingb/Makefile +++ b/emulators/cingb/Makefile @@ -3,6 +3,7 @@ PORTNAME= cingb DISTVERSIONPREFIX= v DISTVERSION= 0.32 +PORTREVISIO= 1 CATEGORIES= emulators MAINTAINER= 0mp@FreeBSD.org @@ -34,7 +35,7 @@ DEBUG_PORTDOCS= DEBUGGER .include <bsd.port.pre.mk> -.if ${ARCH} != "sparc64" && ${ARCH} != "powerpc" +.if ${ARCH} != "sparc64" && ${ARCH} != "powerpc" && ${ARCH} != powerpc64 CPPFLAGS+= -DUSE_LITTLE_ENDIAN .endif |