~ubuntu-branches/ubuntu/edgy/mhc/edgy

« back to all changes in this revision

Viewing changes to configure.rb

  • Committer: Bazaar Package Importer
  • Author(s): Fumitoshi UKAI
  • Date: 2004-05-10 01:22:22 UTC
  • Revision ID: james.westby@ubuntu.com-20040510012222-ks7vkpzzjtofqnik
Tags: 0.25.1+20040505-1
* New snapshot is packaged.
* Oort Gnus supported

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
## Created: 2000/7/12
7
7
## Revised: $Date: 2003/10/13 07:26:29 $
8
8
 
 
9
RUBY = 'ruby1.6'
 
10
 
9
11
$LOAD_PATH .unshift('.')
10
12
require 'mhc-make'
11
13
include MhcMake
60
62
################################################################
61
63
## command check
62
64
 
63
 
conf .search_command('ruby',         '@@MHC_RUBY_PATH@@',       false, true)
 
65
conf .search_command(RUBY,         '@@MHC_RUBY_PATH@@',       false, true)
64
66
conf .search_command('emacs',        '@@MHC_EMACS_PATH@@',      false, false)
65
67
conf .search_command('emacs',        '@@MHC_FSF_EMACS_PATH@@',  false, false)
66
68
conf .search_command('xemacs',       '@@MHC_XEMACS_PATH@@',     false, false)
114
116
 
115
117
print "In ruby-ext/\n"
116
118
Dir .chdir('ruby-ext')
117
 
make_system('ruby extconf.rb')
 
119
make_system("#{RUBY} extconf.rb")
118
120
 
119
121
exit 0