Change the CTF conversion makefile code to use a new line to avoid

spawning another shell.

Requested by: Ed Schouten

M    config/mkmakefile.c
This commit is contained in:
John Birrell 2008-06-09 06:33:26 +00:00
parent 89020621fd
commit 1f1fa917bd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=179666

View file

@ -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;