0001-f2fs-tools-Use-srcdir-prefix-to-denote-include-path.patch 871 B

1234567891011121314151617181920212223242526272829
  1. From 0fb9d6bc25e903f7831a38468845ea143fb5afd5 Mon Sep 17 00:00:00 2001
  2. From: Khem Raj <raj.khem@gmail.com>
  3. Date: Sat, 11 Aug 2018 18:49:03 -0700
  4. Subject: [PATCH] f2fs-tools: Use srcdir prefix to denote include path
  5. This helps builds when builddir != srcdir
  6. Upstream-Status: Submitted [https://lkml.org/lkml/2018/8/12/1]
  7. Signed-off-by: Khem Raj <raj.khem@gmail.com>
  8. ---
  9. tools/sg_write_buffer/Makefile.am | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/tools/sg_write_buffer/Makefile.am b/tools/sg_write_buffer/Makefile.am
  12. index 922c328..19c438d 100644
  13. --- a/tools/sg_write_buffer/Makefile.am
  14. +++ b/tools/sg_write_buffer/Makefile.am
  15. @@ -1,7 +1,7 @@
  16. ## Makefile.am
  17. if LINUX
  18. -AM_CPPFLAGS = -I./include
  19. +AM_CPPFLAGS = -I$(srcdir)/include
  20. AM_CFLAGS = -Wall
  21. sbin_PROGRAMS = sg_write_buffer
  22. sg_write_buffer_SOURCES = sg_write_buffer.c \
  23. --
  24. 2.18.0