diff options
author | 1996-08-26 21:25:20 +0000 | |
---|---|---|
committer | 1996-08-26 21:25:20 +0000 | |
commit | ffe4a4a80d409bc72344ceea918e01e75a594ba9 (patch) | |
tree | bc2e82c6faa88e2f9cbd761cc0343b4e63624bcc /usr.bin/cpp | |
parent | Fix one more variable.. (diff) | |
download | wireguard-openbsd-ffe4a4a80d409bc72344ceea918e01e75a594ba9.tar.xz wireguard-openbsd-ffe4a4a80d409bc72344ceea918e01e75a594ba9.zip |
Our /usr/libexec/cpp link creation wasn't suitable for cross-builds
Diffstat (limited to 'usr.bin/cpp')
-rw-r--r-- | usr.bin/cpp/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/cpp/Makefile b/usr.bin/cpp/Makefile index 36426247def..c61ba467574 100644 --- a/usr.bin/cpp/Makefile +++ b/usr.bin/cpp/Makefile @@ -1,13 +1,9 @@ -# $OpenBSD: Makefile,v 1.3 1996/06/26 05:32:24 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 1996/08/26 21:25:22 niklas Exp $ NOMAN= beforeinstall: install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/cpp.sh ${DESTDIR}${BINDIR}/cpp - if [ `cc -print-libgcc-file-name` != /usr/lib/libgcc.a ]; then \ - (cd ${DESTDIR}/usr/libexec; rm -f cpp; \ - ln -s `cc -print-libgcc-file-name | sed -e 's/libgcc\.a/cpp/'` cpp); \ - fi .include <bsd.prog.mk> |