diff options
author | jlam <jlam> | 2005-06-17 04:49:45 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-06-17 04:49:45 +0000 |
commit | 79688a7f5250bd47f328e560936fb29816443112 (patch) | |
tree | 60b722189a49bfe1537f12edb5ede23f86aeb41e /lang/ruby | |
parent | a4f055ba26863956147b0f0f2d789a3a17cb4fb0 (diff) | |
download | pkgsrc-79688a7f5250bd47f328e560936fb29816443112.tar.gz |
Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead of
${PREFIX}.
Diffstat (limited to 'lang/ruby')
-rw-r--r-- | lang/ruby/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/ruby/Makefile b/lang/ruby/Makefile index 3dab9f2eea5..0a160aee6e8 100644 --- a/lang/ruby/Makefile +++ b/lang/ruby/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2005/06/16 06:58:01 jlam Exp $ +# $NetBSD: Makefile,v 1.36 2005/06/17 04:49:47 jlam Exp $ DISTNAME= ruby-${RUBY_VERSION} PKGREVISION= 2 @@ -31,7 +31,7 @@ do-install: ${CP} ${PKGDIR}/PLIST ${PLIST_SRC} .if ${RUBY_NAME} != "ruby" .for f in ${RUBY_COMMANDS} - ${LN} -sf ${f}${RUBY_VER} ${LOCALBASE}/bin/${f} + ${LN} -sf ${f}${RUBY_VER} ${PREFIX}/bin/${f} ${ECHO} bin/${f} >> ${PLIST_SRC} .endfor ${LN} -sf ${RUBY_NAME}.1 ${PREFIX}/man/man1/ruby.1 |