diff options
author | 2003-12-03 21:30:12 +0000 | |
---|---|---|
committer | 2003-12-03 21:30:12 +0000 | |
commit | 10a2ceee4931d52b65920fec4ecdbbe023a72002 (patch) | |
tree | 35bb6a4ea8a3b15665fc0c6d5ff6c1a0a446e23c | |
parent | Change how the line output from the 'h' command is formatted. (diff) | |
download | wireguard-openbsd-10a2ceee4931d52b65920fec4ecdbbe023a72002.tar.xz wireguard-openbsd-10a2ceee4931d52b65920fec4ecdbbe023a72002.zip |
HOST_CFLAGS need to find libiberty too, even on vax!
ok deraadt@
-rw-r--r-- | gnu/egcs/gcc/Makefile.bsd-wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/egcs/gcc/Makefile.bsd-wrapper b/gnu/egcs/gcc/Makefile.bsd-wrapper index b3f4c76c457..faea2f7829a 100644 --- a/gnu/egcs/gcc/Makefile.bsd-wrapper +++ b/gnu/egcs/gcc/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.16 2003/11/24 17:12:55 espie Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.17 2003/12/03 21:30:12 espie Exp $ MAN= cccp.1 gcc.1 gcc-local.1 protoize.1 gcov.1 MLINKS+= gcc.1 cc.1 @@ -27,7 +27,7 @@ MAKE_FLAGS= CFLAGS="${GNUCFLAGS}" \ build_infodir=. .if ${MACHINE_ARCH} == "vax" -MAKE_FLAGS+= HOST_CFLAGS="${VAXHOST_CFLAGS}" +MAKE_FLAGS+= HOST_CFLAGS="${VAXHOST_CFLAGS} -I${LIBIBERTY_INCLUDES}" .endif GXX_INCDIR= /usr/include/g++ |