From 3447ec446cd95d080eca8a255c7ad5400c0696dc Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Fri, 15 Jun 2007 18:17:18 +0000 Subject: [PATCH] Aesthetical change. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21417 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/build/libroot/Jamfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/build/libroot/Jamfile b/src/build/libroot/Jamfile index b5b81bfe3a..ee226536ab 100644 --- a/src/build/libroot/Jamfile +++ b/src/build/libroot/Jamfile @@ -22,8 +22,9 @@ UseHeaders [ FDirName $(HAIKU_TOP) headers build private kernel ] : true ; MakeLocate libroot_build.so : $(HOST_BUILD_COMPATIBILITY_LIB_DIR) ; # darwin already has strlcpy and strlcat in libSystem +local strlSources ; if $(HOST_PLATFORM) != darwin { -STRLSRC = strlcpy.c strlcat.c ; + strlSources = strlcpy.c strlcat.c ; } BuildPlatformSharedLibrary libroot_build.so : @@ -37,12 +38,12 @@ BuildPlatformSharedLibrary libroot_build.so : sem.cpp thread.cpp - $(STRLSRC) + $(strlSources) strnlen.c : $(HOST_LIBSTDC++) ; -SEARCH on [ FGristFiles strlcat.c strlcpy.c strnlen.c ] +SEARCH on [ FGristFiles $(strlSources) strnlen.c ] = [ FDirName $(HAIKU_TOP) src system libroot posix string ] ;