diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2022-01-12 11:02:38 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2022-01-12 12:44:23 +0000 |
commit | 74615207da3d4e9b707ef5713256456bcd19d6c3 (patch) | |
tree | 762e95338bb728b6095bf72055141410f8629be6 | |
parent | 527b8e66475743d8957e90a451cf408bb90b2ddb (diff) | |
download | ports-74615207da3d4e9b707ef5713256456bcd19d6c3.tar.gz ports-74615207da3d4e9b707ef5713256456bcd19d6c3.zip |
audio/wavplay: fix ONLY_FOR_ARCHS
- Remove powerpc* from ONLY_FOR_ARCHS, which were incorrectly added
on a sole basis that the port builds. It needs to be runtested.
- Add ONLY_FOR_ARCHS_REASON to prevent such mistake in future.
PR: 261061
-rw-r--r-- | audio/wavplay/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/wavplay/Makefile b/audio/wavplay/Makefile index bfc5c7a82577..d16999356e4d 100644 --- a/audio/wavplay/Makefile +++ b/audio/wavplay/Makefile @@ -12,7 +12,8 @@ COMMENT= Wav player and recorder LICENSE= GPLv2 # only LICENSE_FILE= ${WRKSRC}/COPYING -ONLY_FOR_ARCHS= amd64 armv6 armv7 i386 powerpc64 powerpc64le +ONLY_FOR_ARCHS= amd64 armv6 armv7 i386 +ONLY_FOR_ARCHS_REASON= does not play sound correctly due to endian issues CFLAGS+= -D_WANT_SEMUN |