diff options
author | jlam <jlam> | 2001-08-20 02:22:41 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-08-20 02:22:41 +0000 |
commit | 23f107238cf47a5bbdfffcbec015a070363dd2ee (patch) | |
tree | f5c68dd95c683a0b252873bf54da7b7302967298 | |
parent | 29dd9a56cd0ed8f0be5c3f6a9048911d8b53e934 (diff) | |
download | pkgsrc-23f107238cf47a5bbdfffcbec015a070363dd2ee.tar.gz |
Instead of a special INSTALL_TARGET setting, set the installation prefix
via MAKE_FLAGS.
-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" |