diff options
author | jlam <jlam@pkgsrc.org> | 2008-03-21 14:13:58 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2008-03-21 14:13:58 +0000 |
commit | 0961a5f6f973f4514e027630a4a19530f329d907 (patch) | |
tree | a623545f30272c0c0bee2746a0ba08e247d4e683 /misc | |
parent | d35f8c5741eee81535d67af4e053c4668be6e4ab (diff) | |
download | pkgsrc-0961a5f6f973f4514e027630a4a19530f329d907.tar.gz |
Remove PKG_DESTDIR_SUPPORT setting from rubygem.mk. Its placement in
this file was awkward because PKG_DESTDIR_SUPPORT must be set before
the first inclusion of bsd.prefs.mk, which forced rubygem.mk to be
included before any other file. Instead, packages which install as
Ruby gems should define PKG_DESTDIR_SUPPORT on their own.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/rubygems/rubygem.mk | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/misc/rubygems/rubygem.mk b/misc/rubygems/rubygem.mk index fbd6c178f34..af891cc85d4 100644 --- a/misc/rubygems/rubygem.mk +++ b/misc/rubygems/rubygem.mk @@ -1,4 +1,4 @@ -# $NetBSD: rubygem.mk,v 1.28 2008/03/19 23:03:22 jlam Exp $ +# $NetBSD: rubygem.mk,v 1.29 2008/03/21 14:13:58 jlam Exp $ # # This Makefile fragment is intended to be included by packages that build # and install Ruby gems. @@ -57,9 +57,6 @@ # The path to the rubygems ``gem'' script. # -# By default, assume that gems are capable of user-destdir installation. -PKG_DESTDIR_SUPPORT?= user-destdir - # Include this early in case some of its target are needed .include "../../lang/ruby/modules.mk" |