blob: 6ba92d8d78a98b6b9818ef4b955039a214676b64 [file] [log] [blame]
#!/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) \
--enable-debug"
if [ -z "$NOCONFIGURE" ]; then
exec ./configure $args CFLAGS="${MYCFLAGS} ${CFLAGS}" "$@"
fi