mirror of
https://github.com/AuxXxilium/kmod.git
synced 2024-11-23 23:10:53 +07:00
18 lines
306 B
Bash
Executable File
18 lines
306 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
autoreconf --install --symlink
|
|
|
|
MYCFLAGS="-g -O2 -Werror"
|
|
|
|
libdir() {
|
|
echo $(cd $1/$(gcc -print-multi-os-directory); pwd)
|
|
}
|
|
|
|
args="--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--libdir=$(libdir /usr/lib)"
|
|
|
|
if [ -z "$NOCONFIGURE" ]; then
|
|
exec ./configure $args CFLAGS="${MYCFLAGS} ${CFLAGS}" "$@"
|
|
fi
|