From 466da447f394f9481dc35235507f3d264b10e3e0 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Fri, 22 Feb 2013 17:26:51 +0100 Subject: [PATCH] do not include /usr/local/include path This should be done using the COMPILER_PATH environment variable if needed (in .bashrc), but should not really be needed at all. Signed-off-by: Paolo Bonzini --- Makefile.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 74f682b..fd8bd4d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -175,8 +175,7 @@ if ISCSITEST noinst_PROGRAMS += bin/iscsi-test-cu # dist_noinst_HEADERS += test-tool/iscsi-test-cu.h -bin_iscsi_test_cu_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/test-tool \ - -I/usr/local/include +bin_iscsi_test_cu_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/test-tool bin_iscsi_test_cu_LDFLAGS = -ldl -lcunit bin_iscsi_test_cu_SOURCES = test-tool/iscsi-test-cu.c \ test-tool/iscsi-support.c \