From: David Lamparter Date: Wed, 15 Apr 2020 14:03:42 +0000 (+0200) Subject: build: silence idiotic libtool warnings X-Git-Tag: base_7.4~33^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=209135f188d02becf944658c02983dacc0c0fdd0;p=matthieu%2Ffrr.git build: silence idiotic libtool warnings Signed-off-by: David Lamparter --- diff --git a/configure.ac b/configure.ac index d46fa75c54..e1e23e224d 100755 --- a/configure.ac +++ b/configure.ac @@ -428,6 +428,9 @@ LT_INIT _LT_CONFIG_LIBTOOL([ patch -N -i "${srcdir}/m4/libtool-whole-archive.patch" libtool >&AS_MESSAGE_LOG_FD || \ AC_MSG_WARN([Could not patch libtool for static linking support. Loading modules into a statically linked daemon will fail.]) + sed -e 's%func_warning "relinking%true #\0%' -i libtool || true + sed -e 's%func_warning "remember to run%true #\0%' -i libtool || true + sed -e 's%func_warning ".*has not been installed in%true #\0%' -i libtool || true ]) if test "$enable_static_bin" = "yes"; then AC_LDFLAGS="-static"