forked from pool/reiserfs
- Add workaround for missing AM_SILENT_RULES - Update to upstream master (19566d0) - build: introduce shared libreiserfscore.so and export it - reiserfsprogs: convert reiserfs_filsys_t from structure to pointer-to-structure - reiserfsprogs: annotate for endian safeness - reiserfsprogs: fix remaining sparse warnings - reiserfsprogs: Fix sparse "warning: Using plain integer as NULL pointer" - sparse: move bitops functions to include/misc.h - reiserfscore: rename usearch_by_position to reiserfs_search_by_position - reiserfscore: make reiserfs_open's filename argument const - swab: protect le32_to_cpu and friends against being defined twice - reiserfs_fs.h: Eliminate overlays in offset_v2 helpers - reiserfscore: move endian helpers for offset_v2 into header - reiserfs_fs.h: Fix ifndef for multiple inclusion - Update to 3.6.24. - reiserfsprogs: autogenerate the version number in the man pages - journal: fix division by 0 with one transaction in log (crash) - resize_reiserfs: fix > 8TB printf formatting - Packaging cleanups. OBS-URL: https://build.opensuse.org/request/show/199279 OBS-URL: https://build.opensuse.org/package/show/filesystems/reiserfs?expand=0&rev=13
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
|