diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-10-08 12:50:51 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-10-08 12:50:51 +0000 |
commit | bbee953436c70e18f68d7682ad22634cce173e4c (patch) | |
tree | 5c8c6d07951fe4eda088815364235c2efd7daf7a | |
parent | d587c2e6692165bfb2653fd7e596e35002048a74 (diff) |
emulators/frodo: fix build on powerpc and powerpc64
Same issue as on powerpc64le.
-rw-r--r-- | emulators/frodo/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/frodo/Makefile b/emulators/frodo/Makefile index e9abd75d9c8e..012bec85c606 100644 --- a/emulators/frodo/Makefile +++ b/emulators/frodo/Makefile @@ -32,7 +32,7 @@ USES+= sdl USE_SDL= sdl .endif -.if ${ARCH} == powerpc64le +.if ${ARCH:Mpowerpc*} USE_GCC= yes .endif |