diff options
| author | Adam Vandenberg | 2010-03-06 22:27:19 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2010-04-17 18:24:02 -0700 |
| commit | 585ee080504f8b76e37c270f8da126e5e4e7fdb6 (patch) | |
| tree | ca0a41879a20e37683d3925177c9349d83385f4e /Library/Formula/spim.rb | |
| parent | c5ff69df0ae301f737a541a0716a76d51155e0d5 (diff) | |
| download | homebrew-585ee080504f8b76e37c270f8da126e5e4e7fdb6.tar.bz2 | |
Clean ups to several formulas, including:
* Removing silly concatenation
* Removing .bat files before installing
* Removing silly quoting
* Fixing download URLs
* Removing explicit versions
Diffstat (limited to 'Library/Formula/spim.rb')
| -rw-r--r-- | Library/Formula/spim.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/spim.rb b/Library/Formula/spim.rb index 4f634b73a..dc4ab6d48 100644 --- a/Library/Formula/spim.rb +++ b/Library/Formula/spim.rb @@ -11,9 +11,9 @@ class Spim <Formula Dir.chdir 'spim' inreplace "Makefile" do |s| - s.change_make_var! "BIN_DIR", "#{bin}" - s.change_make_var! "EXCEPTION_DIR", "#{libexec}" - s.change_make_var! "MAN_DIR", "#{man1}" + s.change_make_var! "BIN_DIR", bin + s.change_make_var! "EXCEPTION_DIR", libexec + s.change_make_var! "MAN_DIR", man1 end system "make" |
