diff options
author | bde <bde@FreeBSD.org> | 1995-10-22 19:16:01 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-10-22 19:16:01 +0000 |
commit | 2de67f54f7a8dd9c9c06c85caf4f27287e129002 (patch) | |
tree | 92576b8138f162a8224f2f24e349aa14f20029e0 /lib/msun | |
parent | 1c4474b3dde278c2810cc31247de1723cdafda93 (diff) | |
download | FreeBSD-src-2de67f54f7a8dd9c9c06c85caf4f27287e129002.zip FreeBSD-src-2de67f54f7a8dd9c9c06c85caf4f27287e129002.tar.gz |
Undo the the changes in the previous revision (MANSRC now works right again).
Use ${INSTALL} instead of install.
Diffstat (limited to 'lib/msun')
-rw-r--r-- | lib/msun/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/msun/Makefile b/lib/msun/Makefile index ac9194b..903ea98 100644 --- a/lib/msun/Makefile +++ b/lib/msun/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 5.1beta 93/09/24 -# $Id: Makefile,v 1.5 1995/05/30 05:47:47 rgrimes Exp $ +# $Id: Makefile,v 1.6 1995/10/02 20:02:05 wollman Exp $ # # ==================================================== # Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. @@ -95,11 +95,12 @@ SRCS=${COMMON_SRCS} SRCS:=${SRCS:S/${i:S/.S/.c/}/$i/} .endfor -MAN3+= man/acos.3 man/acosh.3 man/asin.3 man/asinh.3 man/atan.3 man/atan2.3 \ - man/atanh.3 man/ceil.3 man/cos.3 man/cosh.3 man/erf.3 man/exp.3 \ - man/fabs.3 man/floor.3 man/fmod.3 man/hypot.3 man/ieee.3 \ - man/ieee_test.3 man/j0.3 man/lgamma.3 man/math.3 man/rint.3 man/sin.3 \ - man/sinh.3 man/sqrt.3 man/tan.3 man/tanh.3 +MANSRC= ${.CURDIR}/man + +MAN3+= acos.3 acosh.3 asin.3 asinh.3 atan.3 atan2.3 atanh.3 ceil.3 \ + cos.3 cosh.3 erf.3 exp.3 fabs.3 floor.3 fmod.3 hypot.3 ieee.3 \ + ieee_test.3 j0.3 lgamma.3 math.3 rint.3 sin.3 sinh.3 sqrt.3 \ + tan.3 tanh.3 MLINKS+=erf.3 erfc.3 MLINKS+=exp.3 expm1.3 exp.3 log.3 exp.3 log10.3 exp.3 log1p.3 exp.3 pow.3 @@ -117,7 +118,7 @@ MLINKS+=sqrt.3 cbrt.3 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 \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 math.h \ ${DESTDIR}/usr/include/math.h;) .include <bsd.lib.mk> |