From 5c168a55ff0780c90583ba46615ba043d81d8ba6 Mon Sep 17 00:00:00 2001 From: oparviainen Date: Wed, 8 Aug 2018 20:09:20 +0300 Subject: [PATCH] Set AR_FLAGS in configure.ac to avoid build warning "ar: `u' modifier ignored since `D' is the default (see `U')" --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 3f40e57..bd8023c 100644 --- a/configure.ac +++ b/configure.ac @@ -31,8 +31,8 @@ AC_DISABLE_STATIC dnl This makes libtool only build shared libs AC_LANG(C++) - - +# Set AR_FLAGS to avoid build warning "ar: `u' modifier ignored since `D' is the default (see `U')" +AR_FLAGS='cr' dnl ############################################################################