Commit cf2b284c authored by Ed Reel's avatar Ed Reel

Fix error with environment variable assignment in mandb package

parent 3995b637
...@@ -22,10 +22,10 @@ class Mandb < Package ...@@ -22,10 +22,10 @@ class Mandb < Package
def self.install def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install" system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
puts "" puts ""
puts "You will have to change the default PAGER env variable to be able to use mandb:" puts "You will have to change the default PAGER environment variable to be able to use mandb:"
puts "echo \"export PAGER=/usr/local/bin/less\" >> ~/.bashrc && . ~/.bashrc" puts "echo \"export PAGER=/usr/local/bin/less\" >> ~/.bashrc && . ~/.bashrc"
puts "" puts ""
puts "You will also have to set the MANPATH env variable:" puts "You will also have to set the MANPATH environment variable:"
puts "echo \"export MANPATH/usr/local/man:$MANPATH\" >> ~/.bashrc && ~/.bashrc" puts "echo \"export MANPATH=/usr/local/man:$MANPATH\" >> ~/.bashrc && . ~/.bashrc"
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment