SDL_ttf: fix sdltest configure flag

The leading dash in the flagname resulted in sdltest not being toggled at
all, which broke the darwin build.
This commit is contained in:
Martin Weinelt
2024-11-04 03:54:41 +01:00
parent 57e8e34590
commit e0b41a76dd
+1 -1
View File
@@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: {
];
configureFlags = [
(lib.enableFeature enableSdltest "-sdltest")
(lib.enableFeature enableSdltest "sdltest")
];
strictDeps = true;