aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTanu Kaskinen <tanuk@iki.fi>2019-08-13 16:49:31 +0300
committerTanu Kaskinen <tanuk@iki.fi>2019-08-13 16:49:31 +0300
commit57c9bf7902dab231981f5b08a730bc89aa04e284 (patch)
tree2ec48de3cb3e679dfc9a97d7353d3503fbb5b62b
parent493e7f35821c09a3b79b883a76283f5614ae1202 (diff)
downloadpulseaudio-57c9bf7902dab231981f5b08a730bc89aa04e284.tar.gz
bootstrap.sh: don't set sysconfdir and localstatedir configure options
I don't know why these options were being passed to configure (--sysconfdir has been there from the very beginning, --localstatedir got added when the system mode was added). Overwriting system files by default is not good, so let's not set these options.
-rwxr-xr-xbootstrap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index 17a9c86b..5045466c 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -43,6 +43,6 @@ fi
autoreconf --force --install --verbose
if test "x$NOCONFIGURE" = "x"; then
- CFLAGS="$CFLAGS -g -O0" ./configure --sysconfdir=/etc --localstatedir=/var --enable-force-preopen "$@" && \
+ CFLAGS="$CFLAGS -g -O0" ./configure --enable-force-preopen "$@" && \
make clean
fi