From b6c3e831b9756ba0a885beacb94864f95878ba41 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Thu, 17 Nov 2005 16:30:09 +0000 Subject: [PATCH] Don't tweak the [CROSS_]SYSTEM_HEADER_DIR to .../posix, since it will cause some headers not to be found. Rather fix the test for finding . git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@14998 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- gcc4/gcc/config/i386/t-beos | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gcc4/gcc/config/i386/t-beos b/gcc4/gcc/config/i386/t-beos index b5c8ec2087..75af790e84 100644 --- a/gcc4/gcc/config/i386/t-beos +++ b/gcc4/gcc/config/i386/t-beos @@ -1,4 +1,4 @@ -# There are system headers elsewhere, but these are the ones that -# we are most likely to want to apply any fixes to. -SYSTEM_HEADER_DIR = /boot/develop/headers/posix -CROSS_SYSTEM_HEADER_DIR = $(tooldir)/sys-include/posix +# The LIMITS_H_TEST looks for limits.h in $(SYSTEM_HEADERS_DIR), but it is in +# .../posix. +LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/posix/limits.h ] +