mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 09:03:42 +00:00
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.
This commit is contained in:
parent
92ca614934
commit
852b6c1093
@ -28,7 +28,8 @@ stdenv.mkDerivation (rec {
|
||||
patches = [
|
||||
./rxvt-unicode-9.06-font-width.patch
|
||||
./rxvt-unicode-256-color-resources.patch
|
||||
];
|
||||
]
|
||||
++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch;
|
||||
|
||||
preConfigure =
|
||||
''
|
||||
|
@ -0,0 +1,10 @@
|
||||
--- a/Makefile.in 2015-01-13 08:52:30.000000000 +0100
|
||||
+++ b/Makefile.in 2015-01-13 08:52:58.000000000 +0100
|
||||
@@ -30,6 +30,7 @@
|
||||
subdirs = src doc
|
||||
|
||||
RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install
|
||||
+.PHONY: $(RECURSIVE_TARGETS)
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user