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 | d0915c61c3e5274723f1ab455789fc8891f1bec5 (patch) | |
tree | 60b722189a49bfe1537f12edb5ede23f86aeb41e /benchmarks/httperf | |
parent | 9df842d1237e5ab852210ddbb94642641ca27d97 (diff) | |
download | pkgsrc-d0915c61c3e5274723f1ab455789fc8891f1bec5.tar.gz |
Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead of
${PREFIX}.
Diffstat (limited to 'benchmarks/httperf')
-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" |