aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/job.c
diff options
context:
space:
mode:
authorHartmut Brandt <harti@FreeBSD.org>2005-03-11 13:02:38 +0000
committerHartmut Brandt <harti@FreeBSD.org>2005-03-11 13:02:38 +0000
commit7985e10d29e664397d2a21197c50d7e9d57d41a1 (patch)
treeaada4c3001fac6002b56a38e8d677fd091fb81a9 /usr.bin/make/job.c
parent2c9d008998986a99ced142533361d4d4d686f951 (diff)
Notes
Diffstat (limited to 'usr.bin/make/job.c')
-rw-r--r--usr.bin/make/job.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c
index 78d91c9dd548..45f0fd8bf004 100644
--- a/usr.bin/make/job.c
+++ b/usr.bin/make/job.c
@@ -2186,10 +2186,10 @@ Shell_Init(void)
* default one... Both the absolute path and the last component
* must be set. The last component is taken from the 'name' field
* of the default shell description pointed-to by commandShell.
- * All default shells are located in _PATH_DEFSHELLDIR.
+ * All default shells are located in PATH_DEFSHELLDIR.
*/
shellName = commandShell->name;
- shellPath = str_concat(_PATH_DEFSHELLDIR, shellName, STR_ADDSLASH);
+ shellPath = str_concat(PATH_DEFSHELLDIR, shellName, STR_ADDSLASH);
}
}