Displaying 1 result from an estimated 1 matches for "6a65fcc".
Did you mean:
6a65fc9
2012 Feb 02
2
PATCH: Don't force automake 1.11 AM_SILENT_RULES
Don't force automake 1.11 AM_SILENT_RULES on folks who don't have it.
diff --git a/configure.ac b/configure.ac
index 6a65fcc..36ac6c6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@
?AC_INIT(src/flac/main.c)
?AM_INIT_AUTOMAKE(flac, 1.2.1)
-AM_SILENT_RULES([yes])
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
?# Don't automagically regenerate autoconf/automake generated files unless
?# explici...