From 7219b3c58f5dca1b5c47e184a19ea7dd8757afaf Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Fri, 13 Mar 2009 15:37:22 +0000 Subject: [PATCH] * Change gnu include path to 3rdparty and also add /boot/common/include to the include list as in r28324. I really thought I updated this based on this patch. * Added /boot/home/config/include to the include list as well, not sure why this wasn't present before. If there's a specific reason against it please tell. git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@29489 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- gcc/gcc/config/haiku.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gcc/gcc/config/haiku.h b/gcc/gcc/config/haiku.h index 6d6b87cf49..95605e259d 100644 --- a/gcc/gcc/config/haiku.h +++ b/gcc/gcc/config/haiku.h @@ -83,6 +83,8 @@ Boston, MA 02111-1307, USA. */ { GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 }, \ { FIXED_INCLUDE_DIR, "GCC", 0, 0, 0, 0 }, \ { TOOL_INCLUDE_DIR, "BINUTILS", 0, 1, 0, 0 }, \ + { "/boot/home/config/include", 0, 0, 0, 0, 0 }, \ + { "/boot/common/include", 0, 0, 0, 0, 0 }, \ { "/boot/develop/headers/os", 0, 0, 0, 0, 0 }, \ { "/boot/develop/headers/os/app", 0, 0, 0, 0, 0 }, \ { "/boot/develop/headers/os/device", 0, 0, 0, 0, 0 }, \ @@ -106,7 +108,7 @@ Boston, MA 02111-1307, USA. */ { "/boot/develop/headers/os/be_apps/Deskbar", 0, 0, 0, 0, 0 }, \ { "/boot/develop/headers/os/be_apps/NetPositive", 0, 0, 0, 0, 0 }, \ { "/boot/develop/headers/os/be_apps/Tracker", 0, 0, 0, 0, 0 }, \ - { "/boot/develop/headers/gnu", 0, 0, 0, 0, 0 }, \ + { "/boot/develop/headers/3rdparty", 0, 0, 0, 0, 0 }, \ { "/boot/develop/headers/cpp", 0, 0, 0, 0, 0 }, \ { "/boot/develop/headers/bsd", 0, 0, 0, 0, 0 }, \ { "/boot/develop/headers/posix", 0, 0, 0, 0, 0 }, \ @@ -146,7 +148,7 @@ Boston, MA 02111-1307, USA. */ { CROSS_INCLUDE_DIR "/os/be_apps/Deskbar", 0, 0, 0, 1, 0 }, \ { CROSS_INCLUDE_DIR "/os/be_apps/NetPositive", 0, 0, 0, 1, 0 }, \ { CROSS_INCLUDE_DIR "/os/be_apps/Tracker", 0, 0, 0, 1, 0 }, \ - { CROSS_INCLUDE_DIR "/gnu", 0, 0, 0, 1, 0 }, \ + { CROSS_INCLUDE_DIR "/3rdparty", 0, 0, 0, 1, 0 }, \ { CROSS_INCLUDE_DIR "/cpp", 0, 0, 0, 1, 0 }, \ { CROSS_INCLUDE_DIR "/bsd", 0, 0, 0, 1, 0 }, \ { CROSS_INCLUDE_DIR "/posix", 0, 0, 0, 1, 0 }, \