diff options
author | 2012-10-13 14:20:26 +0000 | |
---|---|---|
committer | 2012-10-13 14:20:26 +0000 | |
commit | 8e42f7781f67f2cbc17ed5f086f926638abede7b (patch) | |
tree | 329ae61d0ddc8b64621ebfc074c1ffa0460c35c1 | |
parent | Only build fdboot on the appropriate architectures. Also fix the path to (diff) | |
download | wireguard-openbsd-8e42f7781f67f2cbc17ed5f086f926638abede7b.tar.xz wireguard-openbsd-8e42f7781f67f2cbc17ed5f086f926638abede7b.zip |
fix typo, keyword is exists, not exist
-rw-r--r-- | gnu/usr.bin/cc/cc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/cc/cc/Makefile b/gnu/usr.bin/cc/cc/Makefile index 4351814fa4d..762e51a4885 100644 --- a/gnu/usr.bin/cc/cc/Makefile +++ b/gnu/usr.bin/cc/cc/Makefile @@ -1,5 +1,5 @@ # $FreeBSD: src/gnu/usr.bin/cc/cc/Makefile,v 1.33.8.1 2009/04/15 03:14:26 kensmith Exp $ -# $OpenBSD: Makefile,v 1.2 2010/09/25 17:44:34 drahn Exp $ +# $OpenBSD: Makefile,v 1.3 2012/10/13 14:20:26 espie Exp $ .include <bsd.own.mk> @@ -16,7 +16,7 @@ LINKS= ${BINDIR}/cc ${BINDIR}/gcc MLINKS= gcc.1 cc.1 gcc.1 c++.1 gcc.1 g++.1 gcc.1 c++filt.1 beforeinstall: -.if !exist(${DESTDIR}${SPECDIR}) +.if !exists(${DESTDIR}${SPECDIR}) ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m ${DIRMODE} \ ${DESTDIR}${SPECDIR} .endif |