diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2023-03-28 07:50:48 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2023-03-28 08:28:15 +0000 |
commit | 4c68c9e4cf80de96739a65f29d18a6d0013d516c (patch) | |
tree | 31f544c18d063d538cba649cdb408b445ebdab68 | |
parent | 8d3b435c422270886336127a0a73189a62d3ccbc (diff) |
audio/musicpd: unbreak with --auto-features=enabled
ERROR: Got argument auto_features as both -Dauto_features and --auto-features. Pick one.
PR: 270361
Reported by: antoine (via exp-run)
-rw-r--r-- | audio/musicpd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile index 4136a24b70ba..cdc18f0b20af 100644 --- a/audio/musicpd/Makefile +++ b/audio/musicpd/Makefile @@ -19,7 +19,7 @@ USES= compiler:c++17-lang localbase:ldflags meson pkgconfig \ python:build tar:xz USE_RC_SUBR= ${PORTNAME} -MESON_ARGS= -Dauto_features=disabled \ +MESON_ARGS= --auto-features=disabled \ -Dbzip2=enabled \ -Dhttpd=true \ -Dicu=enabled \ |