From ceca66e390d6ff479721485e3160e913e97761c1 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 03 Jan 2021 20:44:05 -0500 Subject: install: Hack around broken gcc-8-dev dependencies --- (limited to 'src/install.sh') diff --git a/src/install.sh b/src/install.sh index ab2977b..e3e9819 100644 --- a/src/install.sh +++ b/src/install.sh @@ -220,6 +220,13 @@ install_get_pkgs() info "$(get_msg 'install_downloading_pkg')" "${pkg}" url="$(printf '%s\n' "${_install_urls}" | \ sed -n "s/^${pkg} //p")" + # FIXME: Remove the next four lines after ProteanOS's gcc-8-dev + # is fixed to not try to install non-existent liblsan.0 and + # libtsan.0 packages on i686-linux-glibc. + if [ x"${url}" = x'' ]; then + error "$(get_msg 'install_downloading_pkg_fail')" + continue + fi md5sum="$(printf '%s\n' "${_install_md5sums}" | \ sed -n "s/^${pkg} //p")" sha256sum="$(printf '%s\n' "${_install_sha256sums}" | \ -- cgit v0.9.1