mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
046f091e0d
This commits needs a MAJOR audit as I oftentimes just guessed which of `$hostOffset`, `$targetOffset`, or a fixed offset should be used.
8 lines
149 B
Bash
8 lines
149 B
Bash
addSDL2Path () {
|
|
if [ -e "$1/include/SDL2" ]; then
|
|
export SDL2_PATH="$SDL2_PATH $1/include/SDL2"
|
|
fi
|
|
}
|
|
|
|
addEnvHooks "$hostOffset" addSDL2Path
|