0003-automake-add-subdir-objects-option.patch 1005 B

1234567891011121314151617181920212223242526272829303132
  1. From 7663c856db10274d8dfbf7fb4299d3f76e5847a8 Mon Sep 17 00:00:00 2001
  2. From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
  3. Date: Tue, 1 May 2018 22:28:52 +0200
  4. Subject: [PATCH] automake: add subdir-objects option
  5. Our version of automake warns if this option is enabled and source files
  6. in subdirectories are used.
  7. It doesn't really seems to have a noticable effect on the build, but it
  8. does remove a lot of annoying warnings.
  9. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
  10. ---
  11. configure.ac | 2 +-
  12. 1 file changed, 1 insertion(+), 1 deletion(-)
  13. diff --git a/configure.ac b/configure.ac
  14. index b3841ea77b..9a37656ddd 100644
  15. --- a/configure.ac
  16. +++ b/configure.ac
  17. @@ -24,7 +24,7 @@ AC_CANONICAL_BUILD
  18. AC_CANONICAL_HOST
  19. AC_PRESERVE_HELP_ORDER
  20. -AM_INIT_AUTOMAKE(tar-ustar color-tests foreign)
  21. +AM_INIT_AUTOMAKE(tar-ustar color-tests foreign subdir-objects)
  22. AC_CONFIG_HEADERS([config.h])
  23. # Disable with "./configure --disable-silent-rules" or "make V=1"
  24. --
  25. 2.14.3