From d8e65ee71ddcf8cfece8156489fde1343cd1c047 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 21 Mar 2012 11:46:12 +0000 Subject: [PATCH] pkgs/development/compilers/ghc/with-packages.nix: trivial changes to fix syntax highlighting in Emacs svn path=/nixpkgs/trunk/; revision=33324 --- pkgs/development/compilers/ghc/with-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/compilers/ghc/with-packages.nix b/pkgs/development/compilers/ghc/with-packages.nix index 63427ea8278..a64047a2906 100644 --- a/pkgs/development/compilers/ghc/with-packages.nix +++ b/pkgs/development/compilers/ghc/with-packages.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { echo "Linking GHC core libraries:" echo -n "Linking $originalTopDir " - for f in $originalTopDir/*; do + for f in "$originalTopDir/"*; do if test -f $f; then ln -s $f $linkedTopDir echo -n . @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { echo echo -n "Linking $originalPkgDir " - for f in $originalPkgDir/*.conf; do + for f in "$originalPkgDir/"*.conf; do ln -s $f $linkedPkgDir echo -n . done @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { # Check if current path is a Cabal package for the current GHC if test -d $currentPkgDir; then echo -n "Linking $currentPath " - for f in $currentPath/bin/*; do + for f in "$currentPath/bin/"*; do ln -s $f $out/bin echo -n . done - for f in $currentPkgDir/*.conf; do + for f in "$currentPkgDir/"*.conf; do ln -s $f $linkedPkgDir echo -n . done