lasso/add-automake-14-support.patch

16 lines
596 B
Diff
Raw Normal View History

2013-12-05 15:21:04 +00:00
diff -uPr lasso-2.3.6.orig/autogen.sh lasso-2.3.6.new/autogen.sh
--- lasso-2.3.6.orig/autogen.sh 2013-12-05 10:17:14.853828723 -0500
+++ lasso-2.3.6.new/autogen.sh 2013-12-05 10:18:16.834233616 -0500
@@ -27,7 +27,10 @@
DIE=1
}
-if automake-1.13 --version < /dev/null > /dev/null 2>&1; then
+if automake-1.14 --version < /dev/null > /dev/null 2>&1; then
+ AUTOMAKE=automake-1.14
+ ACLOCAL=aclocal-1.14
+elif automake-1.13 --version < /dev/null > /dev/null 2>&1; then
AUTOMAKE=automake-1.13
ACLOCAL=aclocal-1.13
elif automake-1.12 --version < /dev/null > /dev/null 2>&1; then