2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00

efivar: dry

This commit is contained in:
Dylan Araps 2019-10-08 11:18:28 +03:00
parent f00b04aafc
commit c0f220d067
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E

View File

@ -1,15 +1,17 @@
#!/bin/sh -e #!/bin/sh -e
patch -p1 < fix-gcc9-dp.h.patch patch -p1 < fix-gcc9-dp.h.patch
patch -p1 < fix-gcc9.patch patch -p1 < fix-gcc9.patch
make libdir=/usr/lib/ \ # Avoid repeating ourselves.
bindir=/usr/bin/ \ mk() {
mandir=/usr/share/man/ \ make \
includedir=/usr/include/ libdir=/usr/lib/ \
bindir=/usr/bin/ \
mandir=/usr/share/man/ \
includedir=/usr/include/ \
"$@"
}
make libdir=/usr/lib/ \ mk
bindir=/usr/bin/ \ mk DESTDIR="$1" install
mandir=/usr/share/man/ \
includedir=/usr/include/ \
DESTDIR="$1" \
install