Removed the parent directory from the header directories again. Instead

include the respective headers explicitly.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29352 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2009-02-28 15:28:51 +00:00
parent c12690b58a
commit 3b8f138f43
5 changed files with 8 additions and 5 deletions

View File

@ -3,7 +3,7 @@
#ifndef USERLAND_FS_HAIKU_KERNEL_FILE_SYSTEM_H
#define USERLAND_FS_HAIKU_KERNEL_FILE_SYSTEM_H
#include "FileSystem.h"
#include "../FileSystem.h"
struct file_system_module_info;

View File

@ -8,7 +8,9 @@
#include <unistd.h>
#include "Debug.h"
#include "kernel_emu.h"
#include "../kernel_emu.h"
#include "HaikuKernelNode.h"

View File

@ -5,7 +5,7 @@
#include <fs_interface.h>
#include "Volume.h"
#include "../Volume.h"
namespace UserlandFS {

View File

@ -7,7 +7,6 @@ local userlandFSIncludes = [ PrivateHeaders userlandfs ] ;
SubDirSysHdrs [ FDirName $(userlandFSIncludes) ] ;
SubDirHdrs [ FDirName $(userlandFSIncludes) private ] ;
SubDirHdrs [ FDirName $(userlandFSIncludes) shared ] ;
SubDirHdrs [ FDirName $(SUBDIR) $(DOTDOT) ] ;
UsePrivateSystemHeaders ;
UsePrivateHeaders libroot ;

View File

@ -10,9 +10,11 @@
#include <NodeMonitor.h>
#include "Debug.h"
#include "../kernel_emu.h"
#include "HaikuKernelNode.h"
#include "HaikuKernelVolume.h"
#include "kernel_emu.h"
#include "vfs.h"