summaryrefslogtreecommitdiff
path: root/Ports/SDL2
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-12-25 23:18:08 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-12-25 23:18:08 +0100
commit4b8b100b83eb07dfcc2eb9f986568a712448a05a (patch)
tree5325788bfc26e81b367a6c57263366a721453d62 /Ports/SDL2
parent99e0d8de2f83fa5145f1e01b2d5929a00abc8f71 (diff)
downloadserenity-4b8b100b83eb07dfcc2eb9f986568a712448a05a.zip
Ports: Fix SDL2 install step
Ports using CMake already install into the right place, so we don't need to do the usual port system DESTDIR override.
Diffstat (limited to 'Ports/SDL2')
-rwxr-xr-xPorts/SDL2/package.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/Ports/SDL2/package.sh b/Ports/SDL2/package.sh
index a1a2c0a8f4..e90e459449 100755
--- a/Ports/SDL2/package.sh
+++ b/Ports/SDL2/package.sh
@@ -10,3 +10,7 @@ configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_ROOT/Toolchain/CMakeToolchain.txt -
configure() {
run cmake $configopts
}
+
+install() {
+ run make install
+}