forked from kiss-community/repo
25 lines
509 B
Bash
Executable File
25 lines
509 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# LTO is used when CFLAGS are unset causing a compilation
|
|
# error with GCC 10. LTO can be set by the user though
|
|
# '-flto-partition=none' is also needed.
|
|
sed 's/ -flto//' Make.defaults > _
|
|
mv -f _ Make.defaults
|
|
|
|
for patch in *.patch; do
|
|
patch -p1 < "$patch"
|
|
done
|
|
|
|
# Avoid repeating ourselves.
|
|
mk() {
|
|
make \
|
|
libdir=/usr/lib/ \
|
|
bindir=/usr/bin/ \
|
|
mandir=/usr/share/man/ \
|
|
includedir=/usr/include/ \
|
|
"$@"
|
|
}
|
|
|
|
mk CC="${CC:-cc}"
|
|
mk DESTDIR="$1" install
|