diff options
| author | Jack Nagel | 2014-05-25 20:59:59 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-05-25 20:59:59 -0500 |
| commit | 77a9feec10c09ef19dd5797c7e79cb9935595992 (patch) | |
| tree | 773465aa4c6ad3a7c621aabca82e3fe5e0bc8bf8 /Library/Formula/rxvt-unicode.rb | |
| parent | b26c19a3d2da2c2feb95b117d61d87d8d76bd803 (diff) | |
| download | homebrew-77a9feec10c09ef19dd5797c7e79cb9935595992.tar.bz2 | |
rxvt-unicode: disable perl when compiling with clang
Closes #27955.
Diffstat (limited to 'Library/Formula/rxvt-unicode.rb')
| -rw-r--r-- | Library/Formula/rxvt-unicode.rb | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/Library/Formula/rxvt-unicode.rb b/Library/Formula/rxvt-unicode.rb index ea57585ba..af2d2102d 100644 --- a/Library/Formula/rxvt-unicode.rb +++ b/Library/Formula/rxvt-unicode.rb @@ -22,14 +22,15 @@ class RxvtUnicode < Formula end def install - args = ["--prefix=#{prefix}", - "--mandir=#{man}", - "--enable-perl", - "--enable-256-color", - "--with-term=rxvt-unicode-256color", - "--with-terminfo=/usr/share/terminfo", - "--enable-smart-resize"] + args = %W[ + --prefix=#{prefix} + --enable-256-color + --with-term=rxvt-unicode-256color + --with-terminfo=/usr/share/terminfo + --enable-smart-resize + ] + args << "--disable-perl" if ENV.compiler == :clang args << "--disable-iso14755" if build.include? "disable-iso14755" system "./configure", *args |
