summaryrefslogtreecommitdiff
path: root/Ports/libzip
diff options
context:
space:
mode:
authorEWouters <6179932+EWouters@users.noreply.github.com>2022-04-20 17:47:34 +0200
committerLinus Groh <mail@linusgroh.de>2022-04-20 18:15:43 +0200
commit94c380de58176da854b3d73224b4e41d1422d000 (patch)
tree27fb4f312deec967d26d66deb4d45263840c8f0f /Ports/libzip
parent62baf25f0b04a81abaf33e409a7948a9bba5cb92 (diff)
downloadserenity-94c380de58176da854b3d73224b4e41d1422d000.zip
Ports/libzip: Remove `DESTDIR` from `make install`
CMake already picks up the install location. Passing `DESTDIR` resulted in installing to `$DESTDIR/$DESTDIR/Root`.
Diffstat (limited to 'Ports/libzip')
-rwxr-xr-xPorts/libzip/package.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/libzip/package.sh b/Ports/libzip/package.sh
index c203bca86a..3d01f4fe51 100755
--- a/Ports/libzip/package.sh
+++ b/Ports/libzip/package.sh
@@ -13,5 +13,5 @@ configure() {
}
install() {
- run make DESTDIR=$SERENITY_BUILD_DIR/Root install
+ run make install
}