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/msun | |
parent | 63fc84178443fce428256e82bde4c6e8e0d728bb (diff) | |
download | FreeBSD-src-3f709de38ccdb0b9e54ac5c652cac186e7aa7f80.zip FreeBSD-src-3f709de38ccdb0b9e54ac5c652cac186e7aa7f80.tar.gz |
cmp -s || install -c ==> install -C
Diffstat (limited to 'lib/msun')
-rw-r--r-- | lib/msun/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/msun/Makefile b/lib/msun/Makefile index 81b2e46..eae8a37 100644 --- a/lib/msun/Makefile +++ b/lib/msun/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 5.1beta 93/09/24 -# $Id: Makefile,v 1.8 1996/02/09 00:45:39 mpp Exp $ +# $Id: Makefile,v 1.9 1996/02/09 00:48:52 mpp Exp $ # # ==================================================== # Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. @@ -139,9 +139,7 @@ MLINKS+=tanh.3 tanhf.3 # XXX we should have only one math.h, and a rule for installing .h's... beforeinstall: - @${ECHO} Installing new math.h - @(cd ${.CURDIR}/src; cmp -s math.h ${DESTDIR}/usr/include/math.h || \ - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 math.h \ - ${DESTDIR}/usr/include/math.h;) + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/src/math.h \ + ${DESTDIR}/usr/include/math.h .include <bsd.lib.mk> |