summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index af1e198..4288565 100644
--- a/Rakefile
+++ b/Rakefile
@@ -105,10 +105,10 @@ end
desc "Deploy headers (for after compile)"
task :headers do
include_path = File.expand_path("../lib/libyajl2/vendored-libyajl2/include/yajl", __FILE__)
- vendor_src_path = File.expand_path("../ext/libyajl2/vendor/yajl/src", __FILE__)
+ build_path = File.expand_path("../ext/libyajl2", __FILE__)
FileUtils.mkdir_p(include_path)
- FileUtils.cp Dir["#{vendor_src_path}/api/*.h"], include_path
+ FileUtils.cp Dir["#{build_path}/api/*.h"], include_path
end
#