]> granicus.if.org Git - jq/commitdiff
Add missing require to Rakefile 93/head
authorShay Elkin <shay@everything.me>
Sun, 24 Mar 2013 12:01:19 +0000 (14:01 +0200)
committerShay Elkin <shay@everything.me>
Sun, 24 Mar 2013 12:45:10 +0000 (14:45 +0200)
Use bundle exec to make manpage
Don't set executable bit on manpage

Makefile
docs/Rakefile

index 69e97c7128b90d7d78b9aa528bfe07b37d65312a..13e0762c28d1ba2c131023ba8daec82695efe9aa 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -85,13 +85,13 @@ docs/content/2.download/source/jq.tgz: jq
 tarball: docs/content/2.download/source/jq.tgz
 
 jq.1: docs/content/3.manual/manual.yml
-       ( cd docs; rake manpage; ) > $@
+       ( cd docs; bundle exec rake manpage; ) > $@
 
 install: jq jq.1
        install -d -m 0755 $(prefix)/bin
        install -m 0755 jq $(prefix)/bin
        install -d -m 0755 $(mandir)/man1
-       install -m 0755 jq.1 $(mandir)/man1
+       install -m 0644 jq.1 $(mandir)/man1
 
 uninstall:
        rm -vf $(prefix)/bin/jq
index a95c97fa10774b151c3df5a786c838bbb6de3b98..231f01b6167dfab859f6af2e7ca808aed3250f47 100644 (file)
@@ -4,6 +4,7 @@ require 'maruku'
 require 'json'
 require 'ronn'
 require 'tempfile'
+require 'yaml'
 
 module ExtraFilters
   def markdownify(input)