0003-configure.ac-fix-autoreconf-with-autoconf-2.70.patch 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. From b8d5d086489ff20339e221323a60c140a9820e67 Mon Sep 17 00:00:00 2001
  2. From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  3. Date: Sat, 9 Oct 2021 09:39:52 +0200
  4. Subject: [PATCH] configure.ac: fix autoreconf with autoconf >= 2.70
  5. Drop AC_CONFIG_AUX_DIR to avoid the following build failure with
  6. autoconf >= 2.70:
  7. autoreconf: error: cannot create config/autoconf: No such file or directory
  8. Fixes:
  9. - http://autobuild.buildroot.org/results/433599039d6e1ee301465f9867e169c121a0646f
  10. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  11. [Upstream status: not sent as upstream is unmaintained:
  12. https://gitlab.com/cespedes/ltrace/-/issues/8]
  13. ---
  14. configure.ac | 1 -
  15. 1 file changed, 1 deletion(-)
  16. diff --git a/configure.ac b/configure.ac
  17. index b9c39fa..486589b 100644
  18. --- a/configure.ac
  19. +++ b/configure.ac
  20. @@ -28,7 +28,6 @@ AC_INIT([ltrace],[0.7.91],[ltrace-devel@lists.alioth.debian.org],
  21. AC_CONFIG_HEADERS([config.h])
  22. AC_CONFIG_SRCDIR(libltrace.c)
  23. AC_CONFIG_MACRO_DIR([config/m4])
  24. -AC_CONFIG_AUX_DIR([config/autoconf])
  25. AC_CANONICAL_BUILD
  26. AC_CANONICAL_HOST
  27. --
  28. 2.33.0