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

@ -40,4 +40,4 @@ make DESTDIR="$1" install
# We don't compile with librsvg which leads to this
# utility solely causing compiler errors for some
# packages. It has no use at all.
rm -f "$1/usr/bin/gtk-encode-symbolic-svg"
rm -f "$1/usr/bin/gtk-encode-symbolic-svg"

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