diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-09-12 21:06:09 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-09-12 21:06:09 +0000 |
commit | 0cb89366dc22339e8cf0f6d940c6b84f3527cdd7 (patch) | |
tree | 46bf7e1c3f5d27579ee5b27174b4635b2637b9d4 /emulators/qemu-devel | |
parent | 34489b9d2ff225af376aac9890eafd48f7ee5d68 (diff) | |
download | freebsd-ports-0cb89366dc22339e8cf0f6d940c6b84f3527cdd7.zip |
emulators/qemu-devel: fix build on powerpc
Same as with emulators/qemu50.
Diffstat (limited to 'emulators/qemu-devel')
-rw-r--r-- | emulators/qemu-devel/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emulators/qemu-devel/Makefile b/emulators/qemu-devel/Makefile index 98b7beb1a380..b29703b530b6 100644 --- a/emulators/qemu-devel/Makefile +++ b/emulators/qemu-devel/Makefile @@ -129,7 +129,9 @@ MAKE_ARGS+= ARCH=x86_64 .endif .if ${ARCH} == "powerpc" +CFLAGS+= -D_CALL_SYSV MAKE_ARGS+= ARCH=ppc +USE_GCC= yes .endif .if ${ARCH} == "powerpc64" |