diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-17 08:06:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-17 08:06:48 +0000 |
commit | 98ba5ecbc3342546b1a514e6d348a1c21e93e7e6 (patch) | |
tree | 44152833e1612cd3a47a3d4e2125bf766f604fdb /gnu/usr.bin/gcc | |
parent | a53c76d8206c35d6e769479df16512e32cecd314 (diff) |
disable MKTEMP_EACH_FILE, it is not coded correctly inside gcc.c
Diffstat (limited to 'gnu/usr.bin/gcc')
-rw-r--r-- | gnu/usr.bin/gcc/config/openbsd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/gcc/config/openbsd.h b/gnu/usr.bin/gcc/config/openbsd.h index e7b54b1e899..9992f539806 100644 --- a/gnu/usr.bin/gcc/config/openbsd.h +++ b/gnu/usr.bin/gcc/config/openbsd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: openbsd.h,v 1.4 1997/04/08 19:33:41 deraadt Exp $ */ +/* $OpenBSD: openbsd.h,v 1.5 1997/09/17 08:06:47 deraadt Exp $ */ /* OPENBSD_NATIVE is defined when gcc is integrated into the OpenBSD source tree so it can be configured appropriately when using the @@ -27,8 +27,8 @@ #endif /* We want gcc.c to call mktemp() for each file it generates. We would - prefer mkstemp(), but we will take what we get. */ -#define MKTEMP_EACH_FILE 1 + prefer mkstemp(), but we will take what we get. XXX busted */ +#undef MKTEMP_EACH_FILE /* Provide a CPP_SPEC appropriate for OpenBSD. Current we just deal with the GCC option `-posix'. */ |