0001-configure.ac-set-automake-strictness-to-foreign.patch 900 B

12345678910111213141516171819202122232425262728293031
  1. From 546e07b2405455c03b7eb0d392c331e189913bc4 Mon Sep 17 00:00:00 2001
  2. From: Vincent Fazio <vfazio@xes-inc.com>
  3. Date: Tue, 31 Jan 2023 19:06:29 -0600
  4. Subject: [PATCH] configure.ac: set automake strictness to foreign
  5. libuio does not conform to the GNU's strict layout requirements. [1]
  6. Set the strictness to foreign to account for this.
  7. [1] https://www.gnu.org/software/automake/manual/html_node/Strictness.html
  8. Signed-off-by: Vincent Fazio <vfazio@xes-inc.com>
  9. ---
  10. configure.ac | 2 +-
  11. 1 file changed, 1 insertion(+), 1 deletion(-)
  12. diff --git a/configure.ac b/configure.ac
  13. index 101abd3..ef46171 100644
  14. --- a/configure.ac
  15. +++ b/configure.ac
  16. @@ -1,6 +1,6 @@
  17. dnl Every other copy of the package version number gets its value from here
  18. AC_INIT(libuio, 0.2.8, https://github.com/linutronix/libuio/issues)
  19. -AM_INIT_AUTOMAKE
  20. +AM_INIT_AUTOMAKE([foreign])
  21. AM_CONFIG_HEADER(config.h)
  22. --
  23. 2.25.1