aboutsummaryrefslogtreecommitdiff
path: root/nxcomp
diff options
context:
space:
mode:
authorUlrich Sibiller <uli42@gmx.de>2017-12-10 18:00:15 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-11 09:48:14 +0100
commit018c557c454ffe62696c4d113c7fe3794845dc2a (patch)
tree1224892d727e69ac05c8f1ab49597e30a3f6855d /nxcomp
parentd5c3e75b3b4d451b33daa0f7c07c3e7a16a88d7c (diff)
downloadnx-libs-018c557c454ffe62696c4d113c7fe3794845dc2a.tar.gz
nx-libs-018c557c454ffe62696c4d113c7fe3794845dc2a.tar.bz2
nx-libs-018c557c454ffe62696c4d113c7fe3794845dc2a.zip
Silence warning: "ar: 'u' modifier ignored since 'D' is the default"
Fixes ArcticaProject/nx-libs#530
Diffstat (limited to 'nxcomp')
-rw-r--r--nxcomp/configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/nxcomp/configure.ac b/nxcomp/configure.ac
index 3ae81f0d1..8037250e7 100644
--- a/nxcomp/configure.ac
+++ b/nxcomp/configure.ac
@@ -25,6 +25,9 @@ AC_SUBST([COMP_VERSION])
LT_COMP_VERSION=[`echo $COMP_VERSION | sed -r -e 's/^([0-9]+\.[0-9]+\.[0-9]+).*$/\1/' -e 's/\./:/g'`]
AC_SUBST([LT_COMP_VERSION])
+# Silence warning: ar: 'u' modifier ignored since 'D' is the default
+AC_SUBST(AR_FLAGS, [cr])
+
# Upstream's pkg.m4 (since 0.27) offers this now, but define our own
# compatible version in case the local version of pkgconfig isn't new enough.
# https://bugs.freedesktop.org/show_bug.cgi?id=48743