diff options
author | peter <peter@FreeBSD.org> | 1996-08-30 02:12:07 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-08-30 02:12:07 +0000 |
commit | 3f709de38ccdb0b9e54ac5c652cac186e7aa7f80 (patch) | |
tree | 3319724cb0b02106aa2d4ce62b3e8052990efbfe /lib/libskey | |
parent | 63fc84178443fce428256e82bde4c6e8e0d728bb (diff) | |
download | FreeBSD-src-3f709de38ccdb0b9e54ac5c652cac186e7aa7f80.zip FreeBSD-src-3f709de38ccdb0b9e54ac5c652cac186e7aa7f80.tar.gz |
cmp -s || install -c ==> install -C
Diffstat (limited to 'lib/libskey')
-rw-r--r-- | lib/libskey/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libskey/Makefile b/lib/libskey/Makefile index bdc3999..ebbac7a 100644 --- a/lib/libskey/Makefile +++ b/lib/libskey/Makefile @@ -8,8 +8,7 @@ MAN5= skey.access.5 CFLAGS+=-DPERMIT_CONSOLE -I${.CURDIR} beforeinstall: - -cd ${.CURDIR}; cmp -s skey.h ${DESTDIR}/usr/include/skey.h || \ - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 skey.h \ - ${DESTDIR}/usr/include + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/skey.h \ + ${DESTDIR}/usr/include .include <bsd.lib.mk> |