From 80fdf4343212fe1525739e78e9cabb893d4ae7fa Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sat, 27 Sep 2008 21:24:53 +0000 Subject: [PATCH] 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 --- src/bin/bash/Jamfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/bash/Jamfile b/src/bin/bash/Jamfile index af34fbab24..0d7cb22e70 100644 --- a/src/bin/bash/Jamfile +++ b/src/bin/bash/Jamfile @@ -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 ] : signames.h ; # some sources include the generated builtext.h -Includes [ FGristFiles execute_cmd.c nojobs.c parse.c ] : builtext.h ; +Includes [ FGristFiles execute_cmd.c jobs.c parse.c ] : builtext.h ; SubInclude HAIKU_TOP src bin bash lib ; SubInclude HAIKU_TOP src bin bash builtins ;