diff options
| author | Charlie Sharpsteen | 2012-09-30 10:12:19 -0500 |
|---|---|---|
| committer | Charlie Sharpsteen | 2012-09-30 10:12:19 -0500 |
| commit | 9f78662acff4c3cb1bff3587c8ead7f5935925a9 (patch) | |
| tree | 16f38d98eb0c5853f91a7ca08da733102a4e6ca6 | |
| parent | 67d6f99e3df83f0aeac23dd5a8384d9646d3246a (diff) | |
| download | homebrew-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.rb | 2 |
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 |
