2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00

various: Minor fixes

This commit is contained in:
Dylan Araps 2020-05-17 10:39:05 +03:00
parent ae8745c66c
commit 8c7da12ec9
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
# plzip is the only thing that will ever require
# this library. Let's simple build it and statically
# this library. Let's simply build it and statically
# compile plzip.
(cd lzlib; ./configure; make)

View File

@ -1,4 +1,4 @@
#!/bin/sh -e
make
make PREFIX=/usr DESTDIR="$1" install
make DESTDIR="$1" PREFIX=/usr install