From d084853edd672751d35dbd0b44e1222d63c130b1 Mon Sep 17 00:00:00 2001 From: Artturin Date: Mon, 18 Mar 2024 16:58:36 +0200 Subject: [PATCH] sdl: fix comment some `sdl2` related packages have split outputs but not `sdl` --- pkgs/development/libraries/SDL/setup-hook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/SDL/setup-hook.sh b/pkgs/development/libraries/SDL/setup-hook.sh index df5ef1bc7e97..54a9b3e8bfab 100644 --- a/pkgs/development/libraries/SDL/setup-hook.sh +++ b/pkgs/development/libraries/SDL/setup-hook.sh @@ -5,7 +5,7 @@ addSDLPath () { # will contain "include/SDL/" and "lib/" directories. # # However the SDL_LIB_PATH is consumed by SDL itself and serves to locate - # libraries like SDL2_mixer, SDL2_image, etc which are not split-package + # libraries like SDL_mixer, SDL_image, etc which are not split-package # so the check above will only trigger on them. if [ -e "$1/lib" ]; then export SDL_LIB_PATH="${SDL_LIB_PATH-}${SDL_LIB_PATH:+ }-L$1/lib"