mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 01:49:48 +00:00
14 lines
448 B
Bash
Executable File
14 lines
448 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
# Destdir is set everytime the installation happens through meson or ninja even when --destdir is not passed.
|
|
# Set target path to prefix in case someone wants to run this script directly.
|
|
target_path='@PREFIX@'
|
|
if test -n "${MESON_INSTALL_DESTDIR_PREFIX+x}"; then
|
|
target_path="${MESON_INSTALL_DESTDIR_PREFIX}"
|
|
fi
|
|
|
|
mkdir -p "${target_path}/share/kea/fuzz"
|
|
cp -r '@current_build_dir@/input'/* "${target_path}/share/kea/fuzz"
|