diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2012-10-13 14:20:27 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2012-10-13 14:20:27 +0000 |
commit | c3a0268da6a05e8429e264bbb1866b6f599a4177 (patch) | |
tree | a63602b3ca3ea2fa85b2fd10d1ca5552978a2a92 /gnu/usr.bin/cc | |
parent | 8cdd6d31762f6a56ded326867727a9616688ae68 (diff) |
fix typo, keyword is exists, not exist
Diffstat (limited to 'gnu/usr.bin/cc')
-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 |