about summary refs log tree commit homepage
path: root/Rakefile
diff options
context:
space:
mode:
authorevanweaver <evanweaver@19e92222-5c0b-0410-8929-a290d50e31e9>2007-10-17 07:10:43 +0000
committerevanweaver <evanweaver@19e92222-5c0b-0410-8929-a290d50e31e9>2007-10-17 07:10:43 +0000
commit954d96c7e8c9ff11e886b23b6b4499387ec6f56b (patch)
tree0197e60cae707d72d1f79c0e13c59c46664eed4c /Rakefile
parent594f6fe42cba5b21b67b3492e1835a169b5a6c1d (diff)
downloadunicorn-954d96c7e8c9ff11e886b23b6b4499387ec6f56b.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@675 19e92222-5c0b-0410-8929-a290d50e31e9
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 6c4678f..1a7006f 100644
--- a/Rakefile
+++ b/Rakefile
@@ -53,10 +53,10 @@ task :ragel do
     sh "ragel http11_parser.rl | rlgen-cd -G2 -o #{target}"
     raise "Failed to build C source" unless File.exist? target
   end
-  Dir.chdir "ext/http11_java" do
-    target = "org/jruby/mongrel/Http11Parser.java"
+  Dir.chdir "ext/http11" do
+    target = "../../ext/http11_java/org/jruby/mongrel/Http11Parser.java"
     File.unlink target if File.exist? target
-    sh "ragel -J http11_parser.rl | rlgen-java -o #{target}"
+    sh "ragel -J http11_parser.java.rl | rlgen-java -o #{target}"
     raise "Failed to build Java source" unless File.exist? target
   end
 end