32 lines
997 B
Diff
32 lines
997 B
Diff
From a6dbba81630db3f647d341c80c9ffa69f80eb869 Mon Sep 17 00:00:00 2001
|
|
From: Jan Engelhardt <jengelh@inai.de>
|
|
Date: Mon, 8 Oct 2012 14:54:27 +0200
|
|
Subject: [PATCH] build: resolve automake-1.12 warnings
|
|
|
|
/usr/share/automake-1.12/am/ltlibrary.am: warning:
|
|
'libnetfilter_cthelper.la': linking libtool libraries using a non-POSIX
|
|
archiver requires 'AM_PROG_AR' in 'configure.ac'
|
|
|
|
Signed-off-by: Jan Engelhardt <jengelh@inai.de>
|
|
(cherry picked from commit af9ae9053e35f2861b9fcdf175500bdce42e597d)
|
|
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
|
---
|
|
configure.ac | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index d9b0118ef0332..d52b1ce3841c2 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -8,6 +8,7 @@ AC_CONFIG_HEADERS([config.h])
|
|
|
|
AM_INIT_AUTOMAKE([-Wall foreign tar-pax no-dist-gzip dist-bzip2
|
|
1.6 subdir-objects])
|
|
+m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
|
|
|
|
dnl kernel style compile messages
|
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
|
--
|
|
2.23.0
|
|
|