Temporarily added the /boot/home/config/* paths to the executable,

library, and add-on search paths. Can be removed again, when certain
optional packages have been moved to /boot/common.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25194 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2008-04-26 20:28:20 +00:00
parent dfa611bb04
commit 0efc7a1ed7
1 changed files with 9 additions and 2 deletions

View File

@ -59,7 +59,9 @@ search_path_for_type(image_type type)
switch (type) {
case B_APP_IMAGE:
return "/boot/common/bin"
return "/boot/home/config/bin"
// TODO: Remove!
":/boot/common/bin"
":/bin"
":/boot/apps"
":/boot/preferences"
@ -68,10 +70,15 @@ search_path_for_type(image_type type)
":/boot/develop/tools/gnupro/bin";
case B_LIBRARY_IMAGE:
return "%A/lib:/boot/common/lib:/boot/beos/system/lib";
return "%A/lib"
":/boot/home/config/lib"
// TODO: Remove!
":/boot/common/lib:/boot/beos/system/lib";
case B_ADD_ON_IMAGE:
return "%A/add-ons"
":/boot/home/config/add-ons"
// TODO: Remove!
":/boot/common/add-ons"
":/boot/beos/system/add-ons";