diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-03 10:05:02 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-03 10:05:02 +0100 |
commit | 3d239be7b4fdf4e460c4c1c39a468e8529cc6548 (patch) | |
tree | 972e90a1a4f510c04a87075a7a8e13d0b0c961e0 /Ports/SDL2 | |
parent | 4565b2d2d939fb3f3ce303b9814a30e49adb025e (diff) | |
download | serenity-3d239be7b4fdf4e460c4c1c39a468e8529cc6548.zip |
Ports: Undo POSIX sh compliance changes for now
Partial revert of 704f48d7f3a1a88047a64b4e2939878d6d4fafb8.
These changes made the ports system unusable.
Diffstat (limited to 'Ports/SDL2')
-rwxr-xr-x | Ports/SDL2/package.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ports/SDL2/package.sh b/Ports/SDL2/package.sh index 0e9018ab94..a1a2c0a8f4 100755 --- a/Ports/SDL2/package.sh +++ b/Ports/SDL2/package.sh @@ -1,4 +1,4 @@ -#!/bin/sh ../.port_include.sh +#!/bin/bash ../.port_include.sh port=SDL2 version=serenity-git workdir=SDL-master-serenity @@ -8,5 +8,5 @@ files="https://github.com/SerenityOS/SDL/archive/master-serenity.tar.gz SDL2-git configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_ROOT/Toolchain/CMakeToolchain.txt -DPULSEAUDIO=OFF" configure() { - run cmake "$configopts" + run cmake $configopts } |