From e26bd9f391deb1b764fc718cd9c0c2da508a4adb Mon Sep 17 00:00:00 2001
From: Andre Noll <maan@tuebingen.mpg.de>
Date: Sat, 22 Dec 2018 14:54:24 +0100
Subject: [PATCH] build: Remove hard-coded include path.

Compilers generally have /usr/local/include in their default search
path.  And if they don't, that has to be considered a local policy
which should not be ignored. The user can always override it by
setting CPPFLAGS.
---
 Makefile.real | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Makefile.real b/Makefile.real
index f313b98a..1d98ec11 100644
--- a/Makefile.real
+++ b/Makefile.real
@@ -110,7 +110,6 @@ CPPFLAGS += -DBUILD_DATE='"$(build_date)"'
 CPPFLAGS += -DLOGLEVELS='$(LOGLEVELS)'
 CPPFLAGS += -DUNAME_RS='"$(uname_rs)"'
 CPPFLAGS += -DCC_VERSION='"$(cc_version)"'
-CPPFLAGS += -I/usr/local/include
 CPPFLAGS += -I$(lls_suite_dir)
 CPPFLAGS += -I$(yy_build_dir)
 CPPFLAGS += $(lopsub_cppflags)
-- 
2.39.5