summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_install.subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2019-01-19 00:45:12 +0000
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2019-01-19 00:45:12 +0000
commitac2da34a3accea357796d799fe62dae3425954e6 (patch)
treeef464f64351af49e58746f74e8e6a930d873f9a6 /subr/pkg_install.subr
parentfabd5096c5665fdec8cdf3af0c70499f6670bda1 (diff)
downloadmidipix_build-ac2da34a3accea357796d799fe62dae3425954e6.tar.bz2
midipix_build-ac2da34a3accea357796d799fe62dae3425954e6.tar.xz
subr/pkg_install.subr:pkg_install(): fix typo.
subr/pkg_install_rpm.subr:pkg_install_rpm(): reintroduce rpmbuild check.
Diffstat (limited to 'subr/pkg_install.subr')
-rw-r--r--subr/pkg_install.subr2
1 files changed, 1 insertions, 1 deletions
diff --git a/subr/pkg_install.subr b/subr/pkg_install.subr
index cd55fdb4..14cd8a0b 100644
--- a/subr/pkg_install.subr
+++ b/subr/pkg_install.subr
@@ -18,7 +18,7 @@ pkg_install() {
tar -C "${PKG_DESTDIR}" -cpf - . |\
gzip -c -9 - > "${PKG_BASE_DIR}/${PKG_NAME}.tgz"
fi;
- if [ [ "${PKG_PKGLIST_DISABLE:-0}" -eq 0 ]; then
+ if [ "${PKG_PKGLIST_DISABLE:-0}" -eq 0 ]; then
if [ ! -e "${PREFIX}/pkglist.${PKG_BUILD_TYPE}" ]; then
touch "${PREFIX}/pkglist.${PKG_BUILD_TYPE}";
fi;