diff options
| author | Jack Nagel | 2014-05-25 20:59:59 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-05-25 20:59:59 -0500 |
| commit | b26c19a3d2da2c2feb95b117d61d87d8d76bd803 (patch) | |
| tree | 29a8c09a91ab80bd35c371d66ac9ca4e7eca293c | |
| parent | 2f9384981339ebbae7f4e7b996370a338f40deaa (diff) | |
| download | homebrew-b26c19a3d2da2c2feb95b117d61d87d8d76bd803.tar.bz2 | |
rxvt-unicode: fix install target
| -rw-r--r-- | Library/Formula/rxvt-unicode.rb | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/Library/Formula/rxvt-unicode.rb b/Library/Formula/rxvt-unicode.rb index d6bb9455f..ea57585ba 100644 --- a/Library/Formula/rxvt-unicode.rb +++ b/Library/Formula/rxvt-unicode.rb @@ -13,6 +13,7 @@ class RxvtUnicode < Formula # Patch hunks 1 and 2 allow perl support to compile on Intel. # Hunk 3 is taken from http://aur.archlinux.org/packages.php?ID=44649 # which removes an extra 10% font width that urxvt adds. + # Last patch fixes `make install` target on case-insensitive filesystems patch :DATA fails_with :llvm do @@ -32,10 +33,7 @@ class RxvtUnicode < Formula args << "--disable-iso14755" if build.include? "disable-iso14755" system "./configure", *args - system "make" - # `make` won't work unless we rename this because of HFS's default case-insensitivity - system "mv INSTALL README.install" - system "make install" + system "make", "install" end end @@ -90,3 +88,15 @@ __END__ if (glheight < g.height - g.y) glheight = g.height - g.y; } +diff --git a/Makefile.in b/Makefile.in +index eee5969..c230930 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -31,6 +31,7 @@ subdirs = src doc + + RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install + ++.PHONY: install + #------------------------------------------------------------------------- + + $(RECURSIVE_TARGETS): |
