diff options
author | jlam <jlam@pkgsrc.org> | 2005-06-17 04:49:45 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-06-17 04:49:45 +0000 |
commit | ac9cb019e001134dcd0b8c87252ac132b04938fd (patch) | |
tree | 60b722189a49bfe1537f12edb5ede23f86aeb41e /benchmarks | |
parent | 96a5c75c9ae0d944d15cdb87d15b32f11c36d448 (diff) | |
download | pkgsrc-ac9cb019e001134dcd0b8c87252ac132b04938fd.tar.gz |
Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead of
${PREFIX}.
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/httperf/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmarks/httperf/Makefile b/benchmarks/httperf/Makefile index df990e95535..8d08d6be0ee 100644 --- a/benchmarks/httperf/Makefile +++ b/benchmarks/httperf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2005/05/22 20:07:40 jlam Exp $ +# $NetBSD: Makefile,v 1.10 2005/06/17 04:49:45 jlam Exp $ # DISTNAME= httperf-0.6 @@ -24,7 +24,7 @@ LDFLAGS+= -lsocket -lnsl -lresolv INSTALLATION_DIRS= bin man/man1 do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/httperf ${LOCALBASE}/bin/httperf - ${INSTALL_MAN} ${WRKSRC}/httperf.man ${LOCALBASE}/man/man1/httperf.1 + ${INSTALL_PROGRAM} ${WRKSRC}/httperf ${PREFIX}/bin/httperf + ${INSTALL_MAN} ${WRKSRC}/httperf.man ${PREFIX}/man/man1/httperf.1 .include "../../mk/bsd.pkg.mk" |