index
:
FreeBSD-src
RELENG_2_2
RELENG_2_3
RELENG_2_3_0
RELENG_2_3_1
RELENG_2_3_2
RELENG_2_3_3
RELENG_2_3_4
RELENG_2_4
RELENG_2_4_4
RELENG_2_4_OLD
devel
devel-11
releng/10.1
releng/10.3
releng/11.0
releng/11.1
stable/10
stable/11
Raptor Engineering's fork of pfsense FreeBSD src with pfSense changes
Raptor Engineering, LLC
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
usr.bin
/
make
/
job.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove unnecessary cast to pid_t.
kevlo
2013-07-04
1
-2
/
+2
*
Include target names in diagnostic output.
fjoe
2012-02-12
1
-8
/
+15
*
Spelling fixes for usr.bin/
uqs
2011-12-30
1
-1
/
+1
*
Revert r228521: sometimes job output is lost
fjoe
2011-12-15
1
-8
/
+2
*
job make: if stdout is a tty create a pty when running a command.
fjoe
2011-12-15
1
-2
/
+8
*
- Fix segmentation fault when running "+command" when run with -jX -n due
fjoe
2011-11-30
1
-57
/
+48
*
Fix the previous commit (still not used to svn vs. cvs). Use the
harti
2010-01-11
1
-4
/
+2
*
Make make respect the TMPDIR environment variable.
harti
2010-01-10
1
-5
/
+14
*
Add missing `void' keyword.
ed
2009-12-29
1
-1
/
+1
*
Garbage collect some old #ifdef'ed code from 1994 that causes vi's '%'
obrien
2009-11-17
1
-11
/
+0
*
Exit with non-zero error code in case of errors
fjoe
2009-10-18
1
-0
/
+2
*
Add volatile to sig_atomic_t where it was missing.
des
2009-06-14
1
-1
/
+1
*
Partially revert r186559.
obrien
2009-02-03
1
-1
/
+1
*
Don't enable -Q by default - I've fixed the rescue build issue.
obrien
2009-01-13
1
-2
/
+1
*
+ Add the -Q be-quiet flag for parallel jobs.
obrien
2009-01-03
1
-1
/
+1
*
1. Add the ability to tweak the token output before targets in job mode.
obrien
2008-12-29
1
-3
/
+16
*
Exit with error code 2 when run with -k (continue if errors) and build failed.
fjoe
2008-12-18
1
-15
/
+11
*
Since in some cases (when found obsolete) 'make' can be builded earlier
ache
2008-09-29
1
-1
/
+6
*
Use arc4random_uniform(3)
ache
2008-08-07
1
-1
/
+1
*
It seems some don't care for the anchient joke. Add WITHOUT_OLD_JOKE
obrien
2008-03-04
1
-0
/
+2
*
No need to tell make to DTRT with "make love", just do it.
obrien
2008-03-04
1
-6
/
+0
*
Implement "Remaking Makefiles" feature:
fjoe
2007-03-08
1
-20
/
+29
*
Fix a bug where the standard input (fifoFd == 0) was confused with an
will
2007-03-08
1
-1
/
+1
*
Make sure that the created fifo gets deleted if the top level make instance
scottl
2005-10-09
1
-0
/
+2
*
Fix the "..." special command. If this command is found all further
harti
2005-07-19
1
-1
/
+1
*
The caller of Var_Value() should not change the variable value. Make
harti
2005-05-24
1
-1
/
+1
*
Get rid of the third argument to Var_Value() the pointer it pointed
harti
2005-05-24
1
-17
/
+5
*
Factor out ProcExec() into its own file and rename it to Proc_Exec() for
harti
2005-05-24
1
-121
/
+4
*
Factor out all the .SHELL parsing related stuff into its own file and
harti
2005-05-24
1
-472
/
+1
*
Use the name of the default shell instead of a numeric index to select
harti
2005-05-24
1
-1
/
+1
*
Another shell attribute 'unsetenv' that will cause to unsetenv("ENV")
harti
2005-05-24
1
-8
/
+13
*
Before doing any parsing parse the builtin shell specifications and
harti
2005-05-24
1
-178
/
+195
*
Allow the .SHELL target to specify the list of shell meta characters and
harti
2005-05-24
1
-289
/
+305
*
Get rid of global variables for argument vectors produced by brk_string()
harti
2005-05-18
1
-35
/
+38
*
Get rid of the ReturnStatus obscuration that was anyway used only
harti
2005-05-18
1
-9
/
+9
*
Make Shell_Init() static - it's only used here.
harti
2005-05-13
1
-9
/
+9
*
Include <err.h>. On my system CVS Make(1) has an implicit declaration of
jmallett
2005-05-12
1
-0
/
+1
*
Get rid of the warning about vfork() clobbering variables.
harti
2005-05-12
1
-4
/
+9
*
Do mktemp() by hand to get rid of the mktemp() warning and the
harti
2005-05-12
1
-17
/
+102
*
The first element of the vector built by brk_string() is never
harti
2005-05-12
1
-2
/
+7
*
Cleanup main(). Move catching SIGCHLD into job.c. Move unsetenv("ENV")
harti
2005-05-12
1
-0
/
+32
*
Compat_RunCommand is used only in job.c so make it static there.
harti
2005-05-12
1
-1
/
+2
*
Fix the fix for bin/72510 applied in job.c:1.70. Actually there have
harti
2005-05-12
1
-1
/
+6
*
Untwist the convoluted if() expressions in JobFinish(). They
harti
2005-05-12
1
-106
/
+174
*
Move some comments around to where they belong and remove some unneccessary
harti
2005-05-12
1
-39
/
+34
*
Convert Compat_RunCommand() to use ProcWait(). This also gives Cmd_Exec()
harti
2005-05-12
1
-73
/
+68
*
Make a function ProcWait() that waits for the given process.
harti
2005-05-12
1
-20
/
+31
*
Overhaul the fork(), exec() code. Put all the common handling that
harti
2005-05-12
1
-167
/
+222
*
Style: remove spaces before tabs.
harti
2005-05-10
1
-31
/
+31
*
Make shellPath and shellName static - they're used in job.c only.
harti
2005-05-10
1
-2
/
+2
[next]