core/pkgs/build-support/substitute/substitute-all.sh

20 lines
245 B
Bash
Raw Normal View History

2024-05-02 00:46:19 +00:00
source $stdenv/setup
eval "$preInstall"
args=
target=$out
if test -n "$dir"; then
target=$out/$dir/$name
mkdir -p $out/$dir
fi
substituteAll $src $target
if test -n "$isExecutable"; then
chmod +x $target
fi
eval "$postInstall"