26 lines
845 B
Diff
26 lines
845 B
Diff
|
|
From: Matthias Eckermann <mge@suse.com>
|
||
|
|
Subject: AM_SILENT_RULES doesn't exist in older automake releases
|
||
|
|
|
||
|
|
AM_SILENT_RULES was introduced in automake v1.11, which isn't present
|
||
|
|
in SLES 11.
|
||
|
|
|
||
|
|
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
|
||
|
|
---
|
||
|
|
configure.ac | 5 +++--
|
||
|
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
||
|
|
|
||
|
|
--- a/configure.ac 2013-08-26 19:02:20.000000000 -0400
|
||
|
|
+++ b/configure.ac 2013-09-16 12:55:05.176206691 -0400
|
||
|
|
@@ -5,8 +5,9 @@ AC_PREREQ(2.50)
|
||
|
|
|
||
|
|
AH_TEMPLATE([HAVE_LIBUUID], [Define for enable libuuid using.])
|
||
|
|
|
||
|
|
-AM_INIT_AUTOMAKE([1.11.1 dist-xz silent-rules])
|
||
|
|
-AM_SILENT_RULES([yes])
|
||
|
|
+AM_INIT_AUTOMAKE([1.10.1])
|
||
|
|
+m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])])
|
||
|
|
+AM_SILENT_RULES([yes]) # make --enable-silent-rules the default.
|
||
|
|
AM_MAINTAINER_MODE
|
||
|
|
|
||
|
|
dnl We install in /sbin, the utils are to be available on boot
|