haskell-generic-builder: fix syntax high-lightning in Emacs

This commit is contained in:
Peter Simons 2017-07-18 20:57:24 +02:00
parent e69c7f5641
commit 27ca0cb3d4

View File

@ -231,11 +231,11 @@ stdenv.mkDerivation ({
# libraries) from all the dependencies. # libraries) from all the dependencies.
local dynamicLinksDir="$out/lib/links" local dynamicLinksDir="$out/lib/links"
mkdir -p $dynamicLinksDir mkdir -p $dynamicLinksDir
for d in $(grep dynamic-library-dirs $packageConfDir/*|awk '{print $2}'); do for d in $(grep dynamic-library-dirs "$packageConfDir/"*|awk '{print $2}'); do
ln -s $d/*.dylib $dynamicLinksDir ln -s "$d/"*.dylib $dynamicLinksDir
done done
# Edit the local package DB to reference the links directory. # Edit the local package DB to reference the links directory.
for f in $packageConfDir/*.conf; do for f in "$packageConfDir/"*.conf; do
sed -i "s,dynamic-library-dirs: .*,dynamic-library-dirs: $dynamicLinksDir," $f sed -i "s,dynamic-library-dirs: .*,dynamic-library-dirs: $dynamicLinksDir," $f
done done
'') + '' '') + ''