mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 21:32:11 -04:00
Run shfmt on util/check-make-install.sh.in
This commit is contained in:
parent
02c58d9baa
commit
96974330d5
1 changed files with 13 additions and 13 deletions
|
|
@ -18,26 +18,26 @@ install_dir="${DESTDIR}@prefix@"
|
|||
|
||||
named_binary_path="${install_dir}/sbin/named"
|
||||
if [ ! -x "${named_binary_path}" ]; then
|
||||
echo "ERROR: ${named_binary_path} does not exist or is not executable"
|
||||
status=1
|
||||
echo "ERROR: ${named_binary_path} does not exist or is not executable"
|
||||
status=1
|
||||
fi
|
||||
|
||||
named_man_page_path="${install_dir}/share/man/man8/named.8"
|
||||
if [ ! -f "${named_man_page_path}" ]; then
|
||||
echo "ERROR: ${named_man_page_path} does not exist"
|
||||
status=1
|
||||
echo "ERROR: ${named_man_page_path} does not exist"
|
||||
status=1
|
||||
fi
|
||||
|
||||
if [ -n "${DESTDIR}" ]; then
|
||||
for expected_subdir in bin lib sbin share; do
|
||||
echo "${install_dir}/${expected_subdir}" >> "${abs_builddir}/expected_dirs"
|
||||
done
|
||||
find "${install_dir}" -maxdepth 1 -mindepth 1 -type d | sort > "${abs_builddir}/existing_dirs"
|
||||
if ! diff -u "${abs_builddir}/expected_dirs" "${abs_builddir}/existing_dirs"; then
|
||||
echo "ERROR: Contents of DESTDIR do not match expectations"
|
||||
status=1
|
||||
fi
|
||||
rm -f "${abs_builddir}/expected_dirs" "${abs_builddir}/existing_dirs"
|
||||
for expected_subdir in bin lib sbin share; do
|
||||
echo "${install_dir}/${expected_subdir}" >>"${abs_builddir}/expected_dirs"
|
||||
done
|
||||
find "${install_dir}" -maxdepth 1 -mindepth 1 -type d | sort >"${abs_builddir}/existing_dirs"
|
||||
if ! diff -u "${abs_builddir}/expected_dirs" "${abs_builddir}/existing_dirs"; then
|
||||
echo "ERROR: Contents of DESTDIR do not match expectations"
|
||||
status=1
|
||||
fi
|
||||
rm -f "${abs_builddir}/expected_dirs" "${abs_builddir}/existing_dirs"
|
||||
fi
|
||||
|
||||
exit $status
|
||||
|
|
|
|||
Loading…
Reference in a new issue