1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-05 22:34:49 +00:00

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

View File

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