diff options
author | 2010-05-03 18:34:42 +0000 | |
---|---|---|
committer | 2010-05-03 18:34:42 +0000 | |
commit | 16fa6157670d8056c95701279d76eed1a453ea04 (patch) | |
tree | e122914159c74e0d9d2c95f1657a265959e81d92 | |
parent | Support gcc4 with cpp (gcc4 binary to be installed in /usr/libexec/cpp). (diff) | |
download | wireguard-openbsd-16fa6157670d8056c95701279d76eed1a453ea04.tar.xz wireguard-openbsd-16fa6157670d8056c95701279d76eed1a453ea04.zip |
install cpp at /usr/libexec/ as with gcc2/3
-rw-r--r-- | gnu/usr.bin/cc/cpp/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/usr.bin/cc/cpp/Makefile b/gnu/usr.bin/cc/cpp/Makefile index cfc82149086..ff41b03cdbb 100644 --- a/gnu/usr.bin/cc/cpp/Makefile +++ b/gnu/usr.bin/cc/cpp/Makefile @@ -1,11 +1,13 @@ # $FreeBSD: src/gnu/usr.bin/cc/cpp/Makefile,v 1.27.8.1 2009/04/15 03:14:26 kensmith Exp $ -# $OpenBSD: Makefile,v 1.1.1.1 2009/10/15 20:50:20 robert Exp $ +# $OpenBSD: Makefile,v 1.2 2010/05/03 18:34:42 drahn Exp $ .include <bsd.own.mk> .include "${.CURDIR}/../Makefile.inc" .include "${.CURDIR}/../Makefile.fe" +BINDIR= /usr/libexec + PROG= cpp SRCS+= cppspec.c |