diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-08 14:32:42 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-08 14:32:42 +0000 |
commit | aa53fc2f7846c80e59e35a8fac357b324b1fd70a (patch) | |
tree | 45c94b4d965ca2e81bebc12e103d1d94ab50927d /usr.bin/lex | |
parent | b6f29caaba4aaeb972675d67ca7c434a5e9b73a7 (diff) |
install -> ${INSTALL}, -c -> ${COPY}
Diffstat (limited to 'usr.bin/lex')
-rw-r--r-- | usr.bin/lex/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/lex/Makefile b/usr.bin/lex/Makefile index a71748b9785..c767ac0c350 100644 --- a/usr.bin/lex/Makefile +++ b/usr.bin/lex/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 1996/06/26 05:35:27 deraadt Exp $ +# $OpenBSD: Makefile,v 1.3 1996/12/08 14:32:27 downsj Exp $ # # By default, flex will be configured to generate 8-bit scanners only if the # -8 flag is given. If you want it to always generate 8-bit scanners, add @@ -40,7 +40,7 @@ scan.c: scan.l scan.o: parse.c afterinstall: - install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/FlexLexer.h \ - ${DESTDIR}/usr/include/g++ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${.CURDIR}/FlexLexer.h ${DESTDIR}/usr/include/g++ .include <bsd.prog.mk> |