diff options
author | wennmach <wennmach> | 2001-04-10 19:31:27 +0000 |
---|---|---|
committer | wennmach <wennmach> | 2001-04-10 19:31:27 +0000 |
commit | 42d23cf094d1083c51b8a026e6b65739a89cc735 (patch) | |
tree | 8e6ed146965e7db4c00b7d1f0c4f2de0c665c530 /parallel | |
parent | 165f75ff257d05081513c9994a94c0597bdce70c (diff) | |
download | pkgsrc-42d23cf094d1083c51b8a026e6b65739a89cc735.tar.gz |
Move cpp-like Makefile (.if exists()) statement after the inclusion of
bsd.pkg.mk.
Thanks to Alistair Crooks for this fix (and for enlightening me).
Diffstat (limited to 'parallel')
-rw-r--r-- | parallel/mpi-ch/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/parallel/mpi-ch/Makefile b/parallel/mpi-ch/Makefile index 2444986baa5..e5c86dea5bc 100644 --- a/parallel/mpi-ch/Makefile +++ b/parallel/mpi-ch/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2001/04/09 12:00:49 wiz Exp $ +# $NetBSD: Makefile,v 1.18 2001/04/10 19:31:27 wennmach Exp $ DISTNAME= mpich-1.2.1 CATEGORIES= parallel @@ -26,9 +26,6 @@ CONFIGURE_ARGS+= --disable-f90 --disable-f90modules .include "../../mk/bsd.prefs.mk" -.if exists(${WRKDIR}/with-java) -PLIST_SRC+= ${PKGDIR}/PLIST.java -.endif PLIST_SRC+= ${PKGDIR}/PLIST post-build: @@ -51,3 +48,7 @@ post-install: @${CHMOD} 755 ${PREFIX}/sbin/mpiuninstall .include "../../mk/bsd.pkg.mk" + +.if exists(${WRKDIR}/with-java) +PLIST_SRC+= ${PKGDIR}/PLIST.java +.endif |