We use jobs.c, not nojobs.c. The generated header dependency was missing

and thus, with a multiple jobs build, jobs.c could be compiled before
the header was generated.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27763 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2008-09-27 21:24:53 +00:00
parent bba1a2b132
commit 80fdf43432

View File

@ -12,10 +12,10 @@ SubDirSysHdrs [ FDirName $(SUBDIR) include ] ;
SubDirSysHdrs [ FDirName $(SUBDIR) lib ] ;
SubDirSysHdrs $(SUBDIR) ;
BuildPlatformMain mksyntax :
BuildPlatformMain mksyntax :
mksyntax.c ;
BuildPlatformMain mksignames :
BuildPlatformMain mksignames :
mksignames.c ;
SEARCH on [ FGristFiles mksignames.c ] = [ FDirName $(SUBDIR) support ] ;
@ -84,7 +84,7 @@ BinCommand sh :
Includes [ FGristFiles trap.c ] : <bash>signames.h ;
# some sources include the generated builtext.h
Includes [ FGristFiles execute_cmd.c nojobs.c parse.c ] : <bash>builtext.h ;
Includes [ FGristFiles execute_cmd.c jobs.c parse.c ] : <bash>builtext.h ;
SubInclude HAIKU_TOP src bin bash lib ;
SubInclude HAIKU_TOP src bin bash builtins ;