Selaa lähdekoodia

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.
Andreas Kling 5 vuotta sitten
vanhempi
commit
4b8b100b83
1 muutettua tiedostoa jossa 4 lisäystä ja 0 poistoa
  1. 4 0
      Ports/SDL2/package.sh

+ 4 - 0
Ports/SDL2/package.sh

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