diff --git a/compile_pmodules.sh b/compile_pmodules.sh index 51eede4..98701ab 100755 --- a/compile_pmodules.sh +++ b/compile_pmodules.sh @@ -62,10 +62,6 @@ if [[ ! -f "${PMODULES_HOME}/bin/getopt" ]] || [[ ${force} == 'yes' ]]; then build getopt "${GETOPT_VERSION}" fi -#if [[ ! -f "${PMODULES_HOME}/sbin/dialog" ]] || [[ ${force} == 'yes' ]]; then -# build dialog "${DIALOG_VERSION}" -#fi - if [[ ! -f "${PMODULES_HOME}/sbin/bash" ]] || [[ ${force} == 'yes' ]]; then build bash "4.3.30" fi diff --git a/dialog/build b/dialog/build deleted file mode 100755 index bec6c4c..0000000 --- a/dialog/build +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env modbuild - -SOURCE_URL="ftp://invisible-island.net/$P/$P-$V.tgz" - -pbuild::configure() { - "${MODULE_SRCDIR}"/configure \ - --prefix="${PREFIX}" \ - --bindir="${PREFIX}/sbin" \ - || exit 1 -} - -pbuild::add_to_group 'Tools' -pbuild::make_all