diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2003-11-10 23:12:47 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2003-11-10 23:12:47 +0000 |
commit | 0e25f843b1fc966dc6341262869872b1f389e650 (patch) | |
tree | 59ad3e838768daa529c3f3941d8d4558670ade6b | |
parent | f08a3966e4362b5580f36bdb41dce6bb1bc20748 (diff) | |
download | pkgsrc-0e25f843b1fc966dc6341262869872b1f389e650.tar.gz |
make sure that the platforms which don't support the optizations still
get the base PLIST. Fixes recently noted problems on alpha bulk builds
that resulted in empty packages.
-rw-r--r-- | lang/ocaml/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/ocaml/Makefile b/lang/ocaml/Makefile index 661011bda33..d06d40ac728 100644 --- a/lang/ocaml/Makefile +++ b/lang/ocaml/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2003/07/21 16:54:03 martti Exp $ +# $NetBSD: Makefile,v 1.21 2003/11/10 23:12:47 dmcmahill Exp $ # DISTNAME= ocaml-3.06 @@ -39,6 +39,8 @@ post-build: .if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH} == "sparc") PLIST_SRC= ${PKGDIR}/PLIST.opt ${PKGDIR}/PLIST +.else +PLIST_SRC= ${PKGDIR}/PLIST .endif PTHREAD_OPTS+= native |