0002-automake-add-subdir-objects-option.patch 962 B

1234567891011121314151617181920212223242526272829303132
  1. From 54e7e0bda02099ae9d1c42abed1932ffa8d354e8 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 206690b468..dfb4c1c329 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. AM_SILENT_RULES([yes])
  24. --
  25. 2.14.4