Aesthetical change.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21417 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2007-06-15 18:17:18 +00:00
parent ee074918de
commit 3447ec446c
+4 -3
View File
@@ -22,8 +22,9 @@ UseHeaders [ FDirName $(HAIKU_TOP) headers build private kernel ] : true ;
MakeLocate libroot_build.so : $(HOST_BUILD_COMPATIBILITY_LIB_DIR) ; MakeLocate libroot_build.so : $(HOST_BUILD_COMPATIBILITY_LIB_DIR) ;
# darwin already has strlcpy and strlcat in libSystem # darwin already has strlcpy and strlcat in libSystem
local strlSources ;
if $(HOST_PLATFORM) != darwin { if $(HOST_PLATFORM) != darwin {
STRLSRC = strlcpy.c strlcat.c ; strlSources = strlcpy.c strlcat.c ;
} }
BuildPlatformSharedLibrary libroot_build.so : BuildPlatformSharedLibrary libroot_build.so :
@@ -37,12 +38,12 @@ BuildPlatformSharedLibrary libroot_build.so :
sem.cpp sem.cpp
thread.cpp thread.cpp
$(STRLSRC) $(strlSources)
strnlen.c strnlen.c
: :
$(HOST_LIBSTDC++) $(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 ] ; = [ FDirName $(HAIKU_TOP) src system libroot posix string ] ;