summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_install.subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-03-02 10:48:22 +0000
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-03-02 10:48:22 +0000
commit083f52ef65a49edcd51f6adcce3ca14c58feb9a4 (patch)
tree9a67abff88307e89d706bef171545eedad171d4b /subr/pkg_install.subr
parent584d2642f894fc06ab6d259d83ca278729c5e1b0 (diff)
downloadmidipix_build-083f52ef65a49edcd51f6adcce3ca14c58feb9a4.tar.bz2
midipix_build-083f52ef65a49edcd51f6adcce3ca14c58feb9a4.tar.xz
subr/pkg_install.subr: remove -D pkg remnants.
Diffstat (limited to 'subr/pkg_install.subr')
-rw-r--r--subr/pkg_install.subr3
1 files changed, 0 insertions, 3 deletions
diff --git a/subr/pkg_install.subr b/subr/pkg_install.subr
index 4afd0750..4bc789ef 100644
--- a/subr/pkg_install.subr
+++ b/subr/pkg_install.subr
@@ -24,9 +24,6 @@ pkg_install() {
done; IFS="${_ifs_old}";
if ! tar -C "${PKG_DESTDIR}" -cpf - . | tar -C "${PKG_PREFIX}" --overwrite -xpf -; then
return 1;
- elif rtl_lmatch "${ARG_DIST}" "pkg" ","\
- && ! tar -C "${PKG_DESTDIR}" -cpf - . | gzip -c -9 - > "${PKG_BASE_DIR}/${PKG_NAME}.tgz"; then
- return 1;
elif [ "${PKG_PKGLIST_DISABLE:-0}" -eq 0 ]; then
if [ ! -e "${PREFIX}/pkglist.${PKG_BUILD_TYPE}" ]\
&& ! touch "${PREFIX}/pkglist.${PKG_BUILD_TYPE}"; then