diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2013-05-07 10:02:23 +0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2013-05-07 14:07:58 +0800 |
commit | 88e363f1dfec49a156c0be4f8368728871401122 (patch) | |
tree | 4ae68ce3421071f968ac165b40a8882b3c6b7930 /test | |
parent | 3f80b5fcca2d728f9eee7738741cd871263bba90 (diff) | |
download | talos-petitboot-88e363f1dfec49a156c0be4f8368728871401122.tar.gz talos-petitboot-88e363f1dfec49a156c0be4f8368728871401122.zip |
Makefiles: remove -I$(includedir)
Currently, we include the system include dir in some of our makefiles;
this is causing build problems when cross-compiling, as the system
include dir may not contain files for the host.
The compiler should be searing in the proper system include dir, so just
remove the redundant -I.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/lib/Makefile.am | 1 | ||||
-rw-r--r-- | test/parser/Makefile.am | 1 | ||||
-rw-r--r-- | test/urls/Makefile.am | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/test/lib/Makefile.am b/test/lib/Makefile.am index 5a3a34a..bfcf9c2 100644 --- a/test/lib/Makefile.am +++ b/test/lib/Makefile.am @@ -16,7 +16,6 @@ AUTOMAKE_OPTIONS = parallel-tests AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/lib \ - -I$(includedir) \ $(DEFAULT_CPPFLAGS) AM_CFLAGS = \ diff --git a/test/parser/Makefile.am b/test/parser/Makefile.am index 7360926..5e7c765 100644 --- a/test/parser/Makefile.am +++ b/test/parser/Makefile.am @@ -15,7 +15,6 @@ AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/lib \ - -I$(includedir) \ $(DEFAULT_CPPFLAGS) AM_CFLAGS = \ diff --git a/test/urls/Makefile.am b/test/urls/Makefile.am index da6fcbf..e2731c1 100644 --- a/test/urls/Makefile.am +++ b/test/urls/Makefile.am @@ -16,7 +16,6 @@ AUTOMAKE_OPTIONS = parallel-tests AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/lib \ - -I$(includedir) \ $(DEFAULT_CPPFLAGS) AM_CFLAGS = \ |