diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-08-04 07:15:29 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-08-04 07:15:29 +0000 |
commit | 208d91635e9fda96eae0708368352abc61128ef5 (patch) | |
tree | 2b83f446bbf4f6b23856652eb19def1899dac217 /lib/rbot/post-config.rb | |
parent | d82eb044e3c353a53a8ba2c583c298f2a17755ba (diff) |
Ahem. I should remember to test things ''before'' committing, not after. Fix COREDIR as set by post-config
Diffstat (limited to 'lib/rbot/post-config.rb')
-rw-r--r-- | lib/rbot/post-config.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/post-config.rb b/lib/rbot/post-config.rb index 14ef9876..1dc29103 100644 --- a/lib/rbot/post-config.rb +++ b/lib/rbot/post-config.rb @@ -3,7 +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 " COREDIR = '#{config('rbdir')}/rbot/core'" f.puts " end" f.puts "end" } |