From 91e0b058af38c93a9267f8a82fa296e1af6fb336 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 25 May 2007 14:10:38 +0000 Subject: [PATCH] * Don't touch symlinks to which we don't have write permission. svn path=/nixpkgs/trunk/; revision=8776 --- pkgs/servers/x11/xorg/imake.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/x11/xorg/imake.sh b/pkgs/servers/x11/xorg/imake.sh index 340798a53644..2de4412e063b 100644 --- a/pkgs/servers/x11/xorg/imake.sh +++ b/pkgs/servers/x11/xorg/imake.sh @@ -2,6 +2,6 @@ preInstall=preInstall preInstall() { ensureDir $out/lib/X11/config ln -s $xorgcffiles/lib/X11/config/* $out/lib/X11/config - touch $out/lib/X11/config/host.def # !!! hack - touch $out/lib/X11/config/date.def # !!! hack + #touch $out/lib/X11/config/host.def # !!! hack + #touch $out/lib/X11/config/date.def # !!! hack }