diff options
| author | Hartmut Brandt <harti@FreeBSD.org> | 2005-05-10 14:23:31 +0000 |
|---|---|---|
| committer | Hartmut Brandt <harti@FreeBSD.org> | 2005-05-10 14:23:31 +0000 |
| commit | 824060d705fc4b4090f9233f5f290434a3e7d32b (patch) | |
| tree | 7cee8bfe8fbdc7a8ddf7b51fa81dfd8f1e010536 /usr.bin/make/main.c | |
| parent | 2046fd5f68ac6337bc2da3f4f49ac75a846812b7 (diff) | |
Notes
Diffstat (limited to 'usr.bin/make/main.c')
| -rw-r--r-- | usr.bin/make/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index 1229b204478d..77be9f453f35 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -862,8 +862,9 @@ main(int argc, char **argv) /* Path of sys.mk */ Lst sysMkPath = Lst_Initializer(sysMkPath); LstNode *ln; + char defsysmk[] = PATH_DEFSYSMK; - Path_Expand(PATH_DEFSYSMK, &sysIncPath, &sysMkPath); + Path_Expand(defsysmk, &sysIncPath, &sysMkPath); if (Lst_IsEmpty(&sysMkPath)) Fatal("make: no system rules (%s).", PATH_DEFSYSMK); LST_FOREACH(ln, &sysMkPath) { |
