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