diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-08-04 06:46:07 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-08-04 06:46:07 +0000 |
commit | 77a10845f4f1bade2337b4acfe0c9e5262ae38c6 (patch) | |
tree | dcd7e120a2edbd27cf88587bd1e22eb4990c6d1a /lib/rbot/post-config.rb | |
parent | 533c1e1dcf0b4b837728a4fc51265d8d20e9d076 (diff) |
Fix one more problem with missing COREDIR and clean up setup.rb
Diffstat (limited to 'lib/rbot/post-config.rb')
-rw-r--r-- | lib/rbot/post-config.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/rbot/post-config.rb b/lib/rbot/post-config.rb index 9413df5e..14ef9876 100644 --- a/lib/rbot/post-config.rb +++ b/lib/rbot/post-config.rb @@ -3,6 +3,7 @@ File.open("pkgconfig.rb", "w") {|f| f.puts "module Irc" f.puts " module PKGConfig" f.puts " DATADIR = '#{config('datadir')}/rbot'" + f.puts " COREDIR = '#{config('rbdir')}/core'" f.puts " end" f.puts "end" } |