From 4b8b100b83eb07dfcc2eb9f986568a712448a05a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 25 Dec 2019 23:18:08 +0100 Subject: [PATCH] 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. --- Ports/SDL2/package.sh | 4 ++++ 1 file changed, 4 insertions(+) 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 +}