From 9f6df5da00ba84044c550be42ac38645854b30be Mon Sep 17 00:00:00 2001 From: Idan Freiberg Date: Sat, 4 Aug 2018 10:05:14 +0300 Subject: [PATCH] autotools: change default prefix to `/usr` so our modules will be installed where system's pulseaudio modules are. Unfortunately, pulseaudio don't check `/usr/local` first --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 534e4e4..91c812f 100644 --- a/configure.ac +++ b/configure.ac @@ -49,6 +49,9 @@ AS_IF([test x"$PULSE_DIR" == x""], AC_MSG_ERROR([m4_text_box([PULSE_MSG])]) ) +# change default prefix so modules will be installed where system pulseaudio is +AC_PREFIX_DEFAULT(["/usr"]) + # copied from pulseaudio AC_ARG_WITH( [module-dir],