diff options
| author | Adam Vandenberg | 2010-09-19 11:15:10 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2010-09-19 11:15:10 -0700 | 
| commit | be9b9bb30d143326377b272b2c0c541caa7905b8 (patch) | |
| tree | 45fcb8d169cccc621660800fac8d288fe01c41e0 | |
| parent | ba010f10f578c6e096e4124dc144ccb816f07d89 (diff) | |
| download | homebrew-be9b9bb30d143326377b272b2c0c541caa7905b8.tar.bz2 | |
use gzip multi-arg support
| -rw-r--r-- | Library/Formula/cvs2svn.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/mr.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/scons.rb | 2 | 
3 files changed, 3 insertions, 3 deletions
| diff --git a/Library/Formula/cvs2svn.rb b/Library/Formula/cvs2svn.rb index e37cbf375..f7796e4db 100644 --- a/Library/Formula/cvs2svn.rb +++ b/Library/Formula/cvs2svn.rb @@ -16,7 +16,7 @@ class Cvs2svn <Formula      system "python", "setup.py", "install", "--prefix=#{prefix}"      system "make man" -    man1.install [gzip('cvs2svn.1'), gzip('cvs2git.1'), gzip('cvs2bzr.1')] +    man1.install gzip('cvs2svn.1', 'cvs2git.1', 'cvs2bzr.1')      prefix.install %w[ BUGS CHANGES COMMITTERS HACKING        cvs2bzr-example.options cvs2git-example.options cvs2hg-example.options        cvs2svn-example.options contrib ] diff --git a/Library/Formula/mr.rb b/Library/Formula/mr.rb index 1fd1da6bf..5b4682984 100644 --- a/Library/Formula/mr.rb +++ b/Library/Formula/mr.rb @@ -8,7 +8,7 @@ class Mr <Formula    def install      system "make"      bin.install ['mr', 'webcheckout'] -    man1.install [gzip('mr.1'), gzip('webcheckout.1')] +    man1.install gzip('mr.1', 'webcheckout.1')      (share+'mr').install Dir['lib/*']    end  end diff --git a/Library/Formula/scons.rb b/Library/Formula/scons.rb index ce9ec7e81..461e6674e 100644 --- a/Library/Formula/scons.rb +++ b/Library/Formula/scons.rb @@ -7,7 +7,7 @@ class Scons <Formula    version '2.0.1'    def install -    man1.install [gzip('scons-time.1'), gzip('scons.1'), gzip('sconsign.1')] +    man1.install gzip('scons-time.1', 'scons.1', 'sconsign.1')      system "python", "setup.py", "install",                       "--prefix=#{prefix}",                       "--standalone-lib", | 
