aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/config/mkmakefile.c
diff options
context:
space:
mode:
authorJohn Birrell <jb@FreeBSD.org>2008-06-09 06:33:26 +0000
committerJohn Birrell <jb@FreeBSD.org>2008-06-09 06:33:26 +0000
commit1f1fa917bd6a1a51afc08906d2689ba36d53a96e (patch)
treeacffe31ca6dc55b8c6febcb0fd2019aff895c640 /usr.sbin/config/mkmakefile.c
parent89020621fd1cea4a63e10b7db131021cc5b832a5 (diff)
downloadsrc-1f1fa917bd6a1a51afc08906d2689ba36d53a96e.tar.gz
src-1f1fa917bd6a1a51afc08906d2689ba36d53a96e.zip
Change the CTF conversion makefile code to use a new line to avoid
spawning another shell. Requested by: Ed Schouten M config/mkmakefile.c
Notes
Notes: svn path=/head/; revision=179666
Diffstat (limited to 'usr.sbin/config/mkmakefile.c')
-rw-r--r--usr.sbin/config/mkmakefile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c
index 21e720278260..7976fcfc9617 100644
--- a/usr.sbin/config/mkmakefile.c
+++ b/usr.sbin/config/mkmakefile.c
@@ -735,7 +735,7 @@ do_rules(FILE *f)
printf("config: don't know rules for %s\n", np);
break;
}
- snprintf(cmd, sizeof(cmd), "${%s_%c%s}; ${NORMAL_CTFCONVERT}", ftype,
+ snprintf(cmd, sizeof(cmd), "${%s_%c%s}\n\t${NORMAL_CTFCONVERT}", ftype,
toupper(och),
ftp->f_flags & NOWERROR ? "_NOWERROR" : "");
compilewith = cmd;