blob: 5405ed802e395df388fd2d0cb1f132b650ed7c93 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001[PATCH] make sysroot work
2
3Upstream-Status: Pending
4
5Add = before the included dir to make sysroot work
6
7Signed-off-by: Roy.Li <rongqing.li@windriver.com>
8---
9 src/Makefile.am | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/src/Makefile.am b/src/Makefile.am
13index c83788c..9f62115 100644
14--- a/src/Makefile.am
15+++ b/src/Makefile.am
16@@ -32,7 +32,7 @@ sglib_SOURCES = ../lib/sg_lib.c \
17 ../lib/sg_pt_common.c
18
19 if HAVE_SGUTILS
20-INCLUDES = -I/usr/include/scsi
21+INCLUDES = -I=@includedir@/scsi
22 sdparm_LDADD = @GETOPT_O_FILES@ @os_libs@ @SGUTILS_LIBS@
23 sdparm_DEPENDENCIES = @GETOPT_O_FILES@
24 else
25--
261.9.1
27