diff options
| author | Max Howell | 2009-06-15 00:55:18 +0100 |
|---|---|---|
| committer | Max Howell | 2009-06-15 00:55:18 +0100 |
| commit | 7eec61001c71f091fe125da9825eb6698b226d87 (patch) | |
| tree | e3a57e9cc6f07e7e9c7a8a9382076d2c35c88970 /Library/Formula | |
| parent | 2249a6bd7b55401f8cf250722326c228c492527c (diff) | |
| download | homebrew-7eec61001c71f091fe125da9825eb6698b226d87.tar.bz2 | |
Rename mv_from to install
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/dos2unix.rb | 4 | ||||
| -rw-r--r-- | Library/Formula/pngcrush.rb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/dos2unix.rb b/Library/Formula/dos2unix.rb index c045501a1..8ed8191f9 100644 --- a/Library/Formula/dos2unix.rb +++ b/Library/Formula/dos2unix.rb @@ -9,7 +9,7 @@ class Dos2unix <Formula system "make clean" system "make" # make install is broken due to INSTALL file, but also it sucks so we'll do it - bin.mv_from ['dos2unix', 'mac2unix'] - man1.mv_from ['dos2unix.1', 'mac2unix.1'] + bin.install ['dos2unix', 'mac2unix'] + man1.install ['dos2unix.1', 'mac2unix.1'] end end diff --git a/Library/Formula/pngcrush.rb b/Library/Formula/pngcrush.rb index 8e63023c9..c0d89f3f6 100644 --- a/Library/Formula/pngcrush.rb +++ b/Library/Formula/pngcrush.rb @@ -7,6 +7,6 @@ class Pngcrush <Formula def install system "make" - bin.mv_from 'pngcrush' + bin.install 'pngcrush' end end
\ No newline at end of file |
