diff options
author | 1997-09-17 08:06:47 +0000 | |
---|---|---|
committer | 1997-09-17 08:06:47 +0000 | |
commit | 74b7e6bc432c9e5fc8685de9deb437d5cea8be78 (patch) | |
tree | 9d04f26af5eb4d5f713da06830deaad87fc83989 | |
parent | NETBSD_CURRENT_970916. Lot's just ID changes, since changes don't apply to (diff) | |
download | wireguard-openbsd-74b7e6bc432c9e5fc8685de9deb437d5cea8be78.tar.xz wireguard-openbsd-74b7e6bc432c9e5fc8685de9deb437d5cea8be78.zip |
disable MKTEMP_EACH_FILE, it is not coded correctly inside gcc.c
-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'. */ |