forked from ungleich-public/cdist
only build emulator binaries once
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
c9f4455677
commit
97e8c431af
1 changed files with 4 additions and 0 deletions
|
@ -24,6 +24,8 @@ __cdist_type_build_emulation()
|
||||||
{
|
{
|
||||||
[ $# -eq 0 ] || __cdist_usage "No arguments"
|
[ $# -eq 0 ] || __cdist_usage "No arguments"
|
||||||
|
|
||||||
|
[ -f "${__cdist_out_type_bin_dir}/.marker" ] && return 0
|
||||||
|
|
||||||
__cdist_type_emulator="$__cdist_abs_mydir/cdist-type-emulator"
|
__cdist_type_emulator="$__cdist_abs_mydir/cdist-type-emulator"
|
||||||
|
|
||||||
if [ ! -d "${__cdist_type_dir}" ]; then
|
if [ ! -d "${__cdist_type_dir}" ]; then
|
||||||
|
@ -42,4 +44,6 @@ __cdist_type_build_emulation()
|
||||||
ln -sf "${__cdist_type_emulator}" \
|
ln -sf "${__cdist_type_emulator}" \
|
||||||
"${__cdist_out_type_bin_dir}/${__cdist_type_build_emulation_type}"
|
"${__cdist_out_type_bin_dir}/${__cdist_type_build_emulation_type}"
|
||||||
done < "${__cdist_tmp_file}"
|
done < "${__cdist_tmp_file}"
|
||||||
|
|
||||||
|
touch "${__cdist_out_type_bin_dir}/.marker"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue