From 6a1cee4a69c7e0f359c3cd3ea42c0daa5225f21c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Mon, 12 Jul 2010 22:32:22 +0000 Subject: [PATCH] Trouble in my last tigervnc commit. Fixing it. svn path=/nixpkgs/trunk/; revision=22570 --- pkgs/tools/admin/tigervnc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/admin/tigervnc/default.nix b/pkgs/tools/admin/tigervnc/default.nix index 40e7da709c7..23f93a1f6b0 100644 --- a/pkgs/tools/admin/tigervnc/default.nix +++ b/pkgs/tools/admin/tigervnc/default.nix @@ -21,6 +21,8 @@ stdenv.mkDerivation { sed -i -e 's,$(includedir)/pixman-1,${pixman}/include/pixman-1,' unix/xserver/hw/vnc/Makefile.am ''; + # I don't know why I can't use in the script + # this: ${concatStringsSep " " (map (f: "${f}") xorgserver.patches)} xorgPatches = xorgserver.patches; postBuild = '' @@ -28,8 +30,6 @@ stdenv.mkDerivation { tar xf ${xorgserver.src} cp -R xorg*/* unix/xserver pushd unix/xserver - # This below does not work and I don't know why: - #for a in ${concatStringsSep " " (map (f: "${f}") xorgserver.patches)} for a in $xorgPatches do patch -p1 < $a