diff options
author | jlam <jlam@pkgsrc.org> | 2001-08-20 02:22:41 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-08-20 02:22:41 +0000 |
commit | 7630e7961decdd5dc9ed7ddf52bbbea306c58dd5 (patch) | |
tree | f5c68dd95c683a0b252873bf54da7b7302967298 /converters/txt2man | |
parent | d73a42f1f471b77ac82c3223fa01b5dbe339d2a3 (diff) | |
download | pkgsrc-7630e7961decdd5dc9ed7ddf52bbbea306c58dd5.tar.gz |
Instead of a special INSTALL_TARGET setting, set the installation prefix
via MAKE_FLAGS.
Diffstat (limited to 'converters/txt2man')
-rw-r--r-- | converters/txt2man/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/converters/txt2man/Makefile b/converters/txt2man/Makefile index 5119eed33dc..423e8506b04 100644 --- a/converters/txt2man/Makefile +++ b/converters/txt2man/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2001/07/26 08:39:43 zuntum Exp $ +# $NetBSD: Makefile,v 1.3 2001/08/20 02:22:41 jlam Exp $ # DISTNAME= txt2man-1.4.2 @@ -11,6 +11,6 @@ COMMENT= txt2man converts flat ASCII text to man page format NO_BUILD= YES -INSTALL_TARGET= install prefix="${PREFIX}" +MAKE_FLAGS+= prefix="${PREFIX}" .include "../../mk/bsd.pkg.mk" |