aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap-configure
blob: 0652e3b223b65e2d858113871f0eb762070c5b97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

if [ -f config.status ]; then
	make maintainer-clean
fi

CONFIGURE_CROSS=""
if [ "$CROSS_COMPILE" ]; then
	CONFIGURE_CROSS="--host=${CROSS_COMPILE}"
fi

./bootstrap && \
    ./configure --enable-maintainer-mode \
		--enable-debug \
		--disable-systemd \
		--prefix=/usr \
		--enable-ese \
		--sysconfdir=/etc \
		"$CONFIGURE_CROSS" \
		--enable-tools "$@"