diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2025-01-17 07:49:41 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2025-01-17 07:49:41 +0000 |
commit | f0c8b4e64ae467c3e2a3e3b2ad8e7717249ae005 (patch) | |
tree | 16ca3da4d08bd79a86e4d31c58d88d886b21b617 | |
parent | 45dc5017d0edaf953b5c27d64e5ccf6470e48839 (diff) |
emulators/86Box: default FLAVOR must be the first one
-rw-r--r-- | emulators/86Box/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/86Box/Makefile b/emulators/86Box/Makefile index d1e8c42ad8e1..001776a75946 100644 --- a/emulators/86Box/Makefile +++ b/emulators/86Box/Makefile @@ -23,8 +23,8 @@ LIB_DEPENDS= libevdev.so:devel/libevdev \ libsndfile.so:audio/libsndfile \ libxkbcommon.so:x11/libxkbcommon -FLAVORS= qt5 qt6 -FLAVOR?= ${FLAVORS:[2]} +FLAVORS= qt6 qt5 +FLAVOR?= qt6 qt5_PKGNAMESUFFIX= -qt5 qt6_PKGNAMESUFFIX= -qt6 |