Skip to content

Commit e92720b

Browse files
authored
Merge pull request #195 from mlabs-haskell/jared/copy-instead-of-symlink-for-haskell-nix
Recursively copy symlinks instead of copying the symlink for lbf haskell
2 parents 790393b + 98de569 commit e92720b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extras/lbf-nix/lbf-haskell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ let
100100

101101
installPhase = ''
102102
mkdir -p $out;
103-
cp -r autogen $out
103+
cp -rL autogen $out
104104
cp ${name}.cabal $out/${name}.cabal;
105105
find $out;
106106

0 commit comments

Comments
 (0)