- Take maintainership - Make port PREFIX-clean PR: ports/102650 Approved by: sem (mentor)
26 lines
1.6 KiB
Ruby
26 lines
1.6 KiB
Ruby
--- setup.rb.orig Tue Aug 29 19:50:14 2006
|
|
+++ setup.rb Tue Aug 29 19:51:57 2006
|
|
@@ -227,17 +227,17 @@
|
|
'the directory for system configuration files'),
|
|
PathItem.new('localstatedir', 'path', parameterize.call(c['localstatedir']),
|
|
'the directory for local state data'),
|
|
- PathItem.new('libruby', 'path', libruby,
|
|
+ PathItem.new('libruby', 'path', parameterize.call(libruby),
|
|
'the directory for ruby libraries'),
|
|
- PathItem.new('librubyver', 'path', librubyver,
|
|
+ PathItem.new('librubyver', 'path', parameterize.call(librubyver),
|
|
'the directory for standard ruby libraries'),
|
|
- PathItem.new('librubyverarch', 'path', librubyverarch,
|
|
+ PathItem.new('librubyverarch', 'path', parameterize.call(librubyverarch),
|
|
'the directory for standard ruby extensions'),
|
|
- PathItem.new('siteruby', 'path', siteruby,
|
|
+ PathItem.new('siteruby', 'path', parameterize.call(siteruby),
|
|
'the directory for version-independent aux ruby libraries'),
|
|
- PathItem.new('siterubyver', 'path', siterubyver,
|
|
+ PathItem.new('siterubyver', 'path', parameterize.call(siterubyver),
|
|
'the directory for aux ruby libraries'),
|
|
- PathItem.new('siterubyverarch', 'path', siterubyverarch,
|
|
+ PathItem.new('siterubyverarch', 'path', parameterize.call(siterubyverarch),
|
|
'the directory for aux ruby binaries'),
|
|
PathItem.new('rbdir', 'path', '$siterubyver',
|
|
'the directory for ruby scripts'),
|