diff options
author | Baruch Siach <baruch@tkos.co.il> | 2015-02-06 09:45:14 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-02-06 10:36:34 +0100 |
commit | 6240f33bec63546d419019be52105c408b0557dd (patch) | |
tree | 7adf720e9eb13681a01e9a75cf15742ed054d9d7 /package/sdparm/0000-makefile-remove-host-headers-include.patch | |
parent | aa270ac892b7f2539c5729d26006562a27ec6381 (diff) | |
download | buildroot-6240f33bec63546d419019be52105c408b0557dd.tar.gz buildroot-6240f33bec63546d419019be52105c408b0557dd.zip |
sdparm: remove include of host headers
Fixes:
http://autobuild.buildroot.net/results/458/458b3da912b977335ac292fa7adddfb85961557a/
http://autobuild.buildroot.net/results/ead/ead9c1d354e9beebdcb892ded2d63b8d3bc3eb51/
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/sdparm/0000-makefile-remove-host-headers-include.patch')
-rw-r--r-- | package/sdparm/0000-makefile-remove-host-headers-include.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/package/sdparm/0000-makefile-remove-host-headers-include.patch b/package/sdparm/0000-makefile-remove-host-headers-include.patch new file mode 100644 index 0000000000..765a81d16b --- /dev/null +++ b/package/sdparm/0000-makefile-remove-host-headers-include.patch @@ -0,0 +1,19 @@ +src/Makefile.am: remove host headers incdlue + +Using host headers is bad for cross compilation. Instead, use the '=' prefix +which expands to the current sysroot. + +Signed-off-by: Baruch Siach <baruch@tkos.co.il> +--- +diff -Nuar sdparm-1.09-orig/src/Makefile.am sdparm-1.09/src/Makefile.am +--- sdparm-1.09-orig/src/Makefile.am 2014-09-23 18:48:44.000000000 +0300 ++++ sdparm-1.09/src/Makefile.am 2015-02-06 09:33:43.693477667 +0200 +@@ -41,7 +41,7 @@ + ../lib/sg_pt_common.c + + if HAVE_SGUTILS +-INCLUDES = -I/usr/include/scsi ++INCLUDES = -I=/scsi + sdparm_LDADD = @GETOPT_O_FILES@ @os_libs@ @SGUTILS_LIBS@ + sdparm_DEPENDENCIES = @GETOPT_O_FILES@ + else |