From 00bb5b5957b27c7d1ac389a309a8a8688c178c48 Mon Sep 17 00:00:00 2001 From: Kostadin Damyanov Date: Fri, 8 Jan 2016 04:06:00 +0200 Subject: [PATCH] unitests: fix the symlink to the resources directory Signed-off-by: Augustin Cavalier --- src/tests/kits/storage/Jamfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/kits/storage/Jamfile b/src/tests/kits/storage/Jamfile index b09da4aa71..d9db26bbdb 100644 --- a/src/tests/kits/storage/Jamfile +++ b/src/tests/kits/storage/Jamfile @@ -30,9 +30,9 @@ UnitTestLib libstoragetest.so # To run the tests some test files must be around. { - local resdir = resources ; + local resdir = resources ; MakeLocate $(resdir) : $(TARGET_UNIT_TEST_DIR) ; - RelSymLink $(resdir) : [ FDirName $(SUBDIR) resources ] : false ; + RelSymLink $(resdir) : [ FDirName $(HAIKU_TOP) src tests kits storage resources ] : false ; Depends libstoragetest.so : $(resdir) ; }