(CC): Move a " to avoid shell error.

From-SVN: r5903
This commit is contained in:
Richard Stallman 1993-10-26 23:01:56 +00:00
parent 78b8d850dc
commit a41f44d603
1 changed files with 5 additions and 4 deletions

View File

@ -2,9 +2,10 @@
# Deduce values of standard ANSI and POSIX types (e.g. size_t, pid_t).
# Emits macros definitions for these, and some other types.
# Intended to be used to massage the sys-protos.h file.
# Expects one arg, which is the GCC source directory.
CC=${CC-./xgcc}
CPP=${CPP-`echo ${CC} -E`}
CC=${CC-"./xgcc -B$1/"}
CPP=${CPP-`echo ${CC} -E -I"$1/"`}
SED=sed
# Generate definitions for the standard types (such as mode_t)
@ -14,8 +15,8 @@ SED=sed
cat >dummy.c <<!EOF!
#include <sys/types.h>
#include <stddef.h>
#include <stdarg.h>
#include "gstddef.h"
#include "gstdarg.h"
#include <stdio.h>
#include <time.h>
#include <signal.h>