From: Giuseppe Bilotta Date: Fri, 4 Aug 2006 07:15:29 +0000 (+0000) Subject: Ahem. I should remember to test things ''before'' committing, not after. Fix COREDIR... X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=208d91635e9fda96eae0708368352abc61128ef5;hp=d82eb044e3c353a53a8ba2c583c298f2a17755ba;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git Ahem. I should remember to test things ''before'' committing, not after. Fix COREDIR as set by post-config --- 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" }