aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharlie Sharpsteen2012-09-30 10:12:19 -0500
committerCharlie Sharpsteen2012-09-30 10:12:19 -0500
commit9f78662acff4c3cb1bff3587c8ead7f5935925a9 (patch)
tree16f38d98eb0c5853f91a7ca08da733102a4e6ca6
parent67d6f99e3df83f0aeac23dd5a8384d9646d3246a (diff)
downloadhomebrew-9f78662acff4c3cb1bff3587c8ead7f5935925a9.tar.bz2
json-c: Fix header install location
A header file was accidentally installed to the top-level `include` folder rather than `include/json`.
-rw-r--r--Library/Formula/json-c.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/json-c.rb b/Library/Formula/json-c.rb
index 8c3dd20b4..e888bdcc8 100644
--- a/Library/Formula/json-c.rb
+++ b/Library/Formula/json-c.rb
@@ -12,6 +12,6 @@ class JsonC < Formula
# The Makefile forgets to install this header. This is fixed upstream and
# can be pulled on the next release.
- include.install 'json_object_iterator.h'
+ (include/'json').install 'json_object_iterator.h'
end
end