From 90aa265896901309458d517fdf7e73899fe4707c Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 5 Aug 2007 01:13:27 +0000 Subject: [PATCH] Made the compatibility level for target libbe_test depend on the compatibility of the host platform. The libtracker Jamfile seems to be the only one that needs another exception. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21827 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- build/jam/HelperRules | 2 +- src/kits/tracker/Jamfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/jam/HelperRules b/build/jam/HelperRules index 3a66b1a16b..53aa2426ce 100644 --- a/build/jam/HelperRules +++ b/build/jam/HelperRules @@ -142,7 +142,7 @@ rule SetPlatformCompatibilityFlagVariables # special case: Haiku libbe.so built for testing under BeOS if $(platform) = libbe_test { - platform = haiku ; + platform = $(HOST_PLATFORM) ; } $(varPrefix)_PLATFORM_BEOS_COMPATIBLE = ; diff --git a/src/kits/tracker/Jamfile b/src/kits/tracker/Jamfile index 8efc05c2b3..038ea1d52c 100644 --- a/src/kits/tracker/Jamfile +++ b/src/kits/tracker/Jamfile @@ -18,7 +18,7 @@ SubDirC++Flags ; local vector_icon_libs ; -if ! $(TARGET_PLATFORM_HAIKU_COMPATIBLE) { +if ! $(TARGET_PLATFORM_HAIKU_COMPATIBLE) && $(TARGET_PLATFORM) != libbe_test { vector_icon_libs = libicon.a libagg.a ; }