aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorErik Abele2010-01-24 16:50:18 +0100
committerDavid Höppner2010-02-02 10:54:55 +0100
commitd5420f0bd2fc6ffa36b792f7eec305da8b0702ad (patch)
tree33f05aee882ef7698e937b18fb78e3665a4998a0 /Library
parent55f692ccc915ff7b8759cdb8b01de52a3c71ecfe (diff)
downloadhomebrew-d5420f0bd2fc6ffa36b792f7eec305da8b0702ad.tar.bz2
Fix installation of man file by replacing the path hardcoded in setup.py.
Signed-off-by: David Höppner <0xffea@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/bazaar.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Formula/bazaar.rb b/Library/Formula/bazaar.rb
index 7a4427d65..a7571d15e 100644
--- a/Library/Formula/bazaar.rb
+++ b/Library/Formula/bazaar.rb
@@ -9,6 +9,7 @@ class Bazaar <Formula
def install
ENV.minimal_optimization
+ inreplace 'setup.py', 'man/man1', 'share/man/man1'
system "python", "setup.py", "build"
system "python", "setup.py", "install", "--prefix=#{prefix}"
end