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.
This commit is contained in:
Andreas Kling 2019-12-25 23:18:08 +01:00
parent 99e0d8de2f
commit 4b8b100b83
Notes: sideshowbarker 2024-07-19 10:40:19 +09:00

View file

@ -10,3 +10,7 @@ configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_ROOT/Toolchain/CMakeToolchain.txt -
configure() {
run cmake $configopts
}
install() {
run make install
}