0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
12 lines
267 B
Bash
12 lines
267 B
Bash
if [ -e .attrs.sh ]; then source .attrs.sh; fi
|
|
source $stdenv/setup
|
|
|
|
genericBuild
|
|
|
|
# !!! hack
|
|
export ALL_INPUTS="$out $pkgs"
|
|
|
|
find $out -name "*.dll.config" | while read configFile; do
|
|
echo "modifying config file $configFile"
|
|
$monoDLLFixer "$configFile"
|
|
done
|