lol

rxvt-unicode: On OS X, add .PHONY target to Makefile.in.

Due to the case-insensitive file system on OS X, `make install` does
nothing, since it sees the INSTALL file as the up-to-date target.
Adding a .PHONY target to the Makefile fixes this.

+12 -1
+2 -1
pkgs/applications/misc/rxvt_unicode/default.nix
··· 28 28 patches = [ 29 29 ./rxvt-unicode-9.06-font-width.patch 30 30 ./rxvt-unicode-256-color-resources.patch 31 - ]; 31 + ] 32 + ++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch; 32 33 33 34 preConfigure = 34 35 ''
+10
pkgs/applications/misc/rxvt_unicode/rxvt-unicode-makefile-phony.patch
··· 1 + --- a/Makefile.in 2015-01-13 08:52:30.000000000 +0100 2 + +++ b/Makefile.in 2015-01-13 08:52:58.000000000 +0100 3 + @@ -30,6 +30,7 @@ 4 + subdirs = src doc 5 + 6 + RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install 7 + +.PHONY: $(RECURSIVE_TARGETS) 8 + 9 + #------------------------------------------------------------------------- 10 +