summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorjlam <jlam>2005-06-17 04:49:45 +0000
committerjlam <jlam>2005-06-17 04:49:45 +0000
commit79688a7f5250bd47f328e560936fb29816443112 (patch)
tree60b722189a49bfe1537f12edb5ede23f86aeb41e /benchmarks
parenta4f055ba26863956147b0f0f2d789a3a17cb4fb0 (diff)
downloadpkgsrc-79688a7f5250bd47f328e560936fb29816443112.tar.gz
Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead of
${PREFIX}.
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/httperf/Makefile6
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"