We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 81da63b + f6c188f commit 1c7b92bCopy full SHA for 1c7b92b
pkgs/development/haskell-modules/with-packages-wrapper.nix
@@ -156,11 +156,11 @@ else
156
157
# Boot libraries are located differently than other libraries since GHC 9.6, so handle them separately.
158
if [[ -x "${bootLibDir}" ]]; then
159
- ln -s "${bootLibDir}"/*.dylib $dynamicLinksDir
+ find "${bootLibDir}" -name '*.dylib' -exec ln -s {} "$dynamicLinksDir" \;
160
fi
161
162
for d in $(grep -Poz "dynamic-library-dirs:\s*\K .+\n" $packageConfDir/*|awk '{print $2}'|sort -u); do
163
- ln -s $d/*.dylib $dynamicLinksDir
+ find "$d" -name '*.dylib' -exec ln -s {} "$dynamicLinksDir" \;
164
done
165
for f in $packageConfDir/*.conf; do
166
# Initially, $f is a symlink to a read-only file in one of the inputs
0 commit comments