Now when BFS_REPLACEMENT is set, the name used for the add-on is "bfs" instead

of "obfs" (thanks Ingo). Also, changed the destination directory. It was formelly
"beos/system/add-ons/kernel/file_systems/bfs/" and now it is
"beos/system/add-ons/kernel/file_systems/" (as it should be).


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7411 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Bruno G. Albuquerque 2004-05-04 22:07:12 +00:00
parent cda24f2279
commit 4e936bb759

View File

@ -21,6 +21,9 @@ oldOPTIM = $(OPTIM) ;
# report itself as "bfs" instead of "obfs" # report itself as "bfs" instead of "obfs"
if $(BFS_REPLACEMENT) { if $(BFS_REPLACEMENT) {
defines += BFS_REPLACEMENT ; defines += BFS_REPLACEMENT ;
bfsAddOnName = bfs ;
} else {
bfsAddOnName = obfs ;
} }
if $(DEBUG) = 0 { if $(DEBUG) = 0 {
@ -35,7 +38,7 @@ oldOPTIM = $(OPTIM) ;
UsePrivateHeaders [ FDirName kernel util ] ; # For kernel_cpp.cpp UsePrivateHeaders [ FDirName kernel util ] ; # For kernel_cpp.cpp
R5KernelAddon obfs : [ FDirName kernel file_systems bfs ] : R5KernelAddon $(bfsAddOnName) : [ FDirName kernel file_systems ] :
BlockAllocator.cpp BlockAllocator.cpp
BPlusTree.cpp BPlusTree.cpp
kernel_cpp.cpp kernel_cpp.cpp