diff options
-rw-r--r-- | math/meschach/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/math/meschach/Makefile b/math/meschach/Makefile index a45dcf3801f..eccc6b58407 100644 --- a/math/meschach/Makefile +++ b/math/meschach/Makefile @@ -1,4 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2001/02/27 18:42:05 jtb Exp $ +# $NetBSD: Makefile,v 1.5 2001/03/31 18:18:58 jtb Exp $ +# +# XXX The tests run during configuration should not be compiled +# with optimization as they determine machine parameters and +# may give incorrect results if optimized. DISTNAME= mesch12b PKGNAME= meschach-1.2b @@ -18,8 +22,8 @@ pre-patch: ${CP} ${FILESDIR}/makefile.in ${WRKSRC} post-patch: - ${SED} -e 's:@PREFIX@:'${PREFIX}':g' < \ - ${FILESDIR}/makefile.test > ${WRKSRC}/Makefile + ${SED} -e 's:@PREFIX@:'${PREFIX}':g' ${FILESDIR}/makefile.test \ + > ${WRKSRC}/Makefile post-install: ${INSTALL_DATA_DIR} ${PREFIX}/include/meschach |