diff options
| author | Adam Vandenberg | 2012-08-09 07:10:39 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-08-09 07:11:24 -0700 |
| commit | b9671d0b9c62ca07f919ed2860137178b3969342 (patch) | |
| tree | 7c70674abd1c2c6d84443b6a0bd830ce1eace0cc /Library/Formula/recode.rb | |
| parent | 7971d601749cfbcd0192d0e1ba9b3dce4dd1a7fb (diff) | |
| download | homebrew-b9671d0b9c62ca07f919ed2860137178b3969342.tar.bz2 | |
Update copy_libtool_files
Fixes #14075.
Diffstat (limited to 'Library/Formula/recode.rb')
| -rw-r--r-- | Library/Formula/recode.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/recode.rb b/Library/Formula/recode.rb index f4cc83b64..9e1d13f79 100644 --- a/Library/Formula/recode.rb +++ b/Library/Formula/recode.rb @@ -15,7 +15,7 @@ class Recode < Formula end def copy_libtool_files! - if MacOS::Xcode.version >= "4.3" + if not MacOS::Xcode.provides_autotools? s = Formula.factory('libtool').share d = "#{s}/libtool/config" cp ["#{d}/config.guess", "#{d}/config.sub"], "." @@ -31,10 +31,11 @@ class Recode < Formula copy_libtool_files! - system "./configure", "--disable-debug", "--disable-dependency-tracking", + system "./configure", "--disable-debug", + "--disable-dependency-tracking", "--without-included-gettext", - "--infodir=#{info}", "--prefix=#{prefix}", + "--infodir=#{info}", "--mandir=#{man}" system "make install" end |
