diff options
author | jmc <jmc@pkgsrc.org> | 2003-06-25 21:01:47 +0000 |
---|---|---|
committer | jmc <jmc@pkgsrc.org> | 2003-06-25 21:01:47 +0000 |
commit | 1999c619578e181e421b56cf6321dd53a589f3eb (patch) | |
tree | 8cfe04113b8be768993088592e790c30813eef2d /textproc/hevea | |
parent | 93684c46af01a01470ea57f308c9fb46c32455fb (diff) | |
download | pkgsrc-1999c619578e181e421b56cf6321dd53a589f3eb.tar.gz |
Redo targets the way the hevea makefile expects it by setting TARGET in the
environment. This makes all targets work (where-as before install wouldn't
so I'm not sure how this ever functioned..)
Diffstat (limited to 'textproc/hevea')
-rw-r--r-- | textproc/hevea/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/hevea/Makefile b/textproc/hevea/Makefile index 660f9e5f6a4..cf2c3871547 100644 --- a/textproc/hevea/Makefile +++ b/textproc/hevea/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2003/06/23 20:36:14 jtb Exp $ +# $NetBSD: Makefile,v 1.4 2003/06/25 21:01:47 jmc Exp $ DISTNAME= hevea-1.05 PKGREVISION= 1 @@ -12,9 +12,9 @@ COMMENT= LaTeX to HTML translator DEPENDS+= ocaml>=3.00:../../lang/ocaml .if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH} == "sparc") -ALL_TARGET=opt +MAKE_ENV+= TARGET=opt .else -ALL_TARGET=byte +MAKE_ENV+= TARGET=byte .endif .include "../../mk/bsd.pkg.mk" |