Unverified Commit e0b41a76 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

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.
parent 57e8e345
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: {
  ];

  configureFlags = [
    (lib.enableFeature enableSdltest "-sdltest")
    (lib.enableFeature enableSdltest "sdltest")
  ];

  strictDeps = true;