blob: cc82e1a90e1c369011c2126a0209bb922c540bb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
DIR="$(dirname "$0")"
if [ -f config.status ]; then
make maintainer-clean
fi
(cd "$DIR" && ./bootstrap) && \
"$DIR/configure" --enable-maintainer-mode \
--enable-debug \
--prefix=/usr \
--mandir=/usr/share/man \
--sysconfdir=/etc \
--disable-datafiles
|