summarylogtreecommitdiffstats
path: root/automake.patch
diff options
context:
space:
mode:
authorbipin kumar2023-05-08 23:53:20 +0530
committerbipin kumar2023-05-08 23:53:20 +0530
commitd1565a6db7ddd65ea7d792d8e9f4aff384eb8ca5 (patch)
tree1fde806ed2b96407c6f015640e4a1d17c0bf67e5 /automake.patch
downloadaur-d1565a6db7ddd65ea7d792d8e9f4aff384eb8ca5.tar.gz
aevol: initial upload
Diffstat (limited to 'automake.patch')
-rw-r--r--automake.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/automake.patch b/automake.patch
new file mode 100644
index 000000000000..a98d81f47e92
--- /dev/null
+++ b/automake.patch
@@ -0,0 +1,24 @@
+Description: Do not call AM_INIT_AUTOMAKE twice
+Bug-Debian: https://bugs.debian.org/998479
+Author: Andreas Tille <tille@debian.org>
+Last-Update: Fri, 05 Nov 2021 22:03:24 +0100
+Reviewed-By: Étienne Mollier <emollier@debian.org>
+--- aevol.orig/configure.ac
++++ aevol/configure.ac
+@@ -20,7 +20,7 @@
+ AC_CONFIG_MACRO_DIR([m4])
+
+ # We want to use automake
+-AM_INIT_AUTOMAKE
++AM_INIT_AUTOMAKE([subdir-objects])
+
+ # Select compiler
+ AC_PROG_CXX([clang-omp++ clang++ g++ icc])
+@@ -298,7 +298,6 @@
+ AM_CONDITIONAL(WITH_RAEVOL, test x"$raevol" != xno)
+ if test "x$raevol" = "xyes" ; then
+ AC_DEFINE(__REGUL)
+- AM_INIT_AUTOMAKE([subdir-objects])
+ fi
+
+ # ************************* --with-blas option *******************************