summaryrefslogtreecommitdiffhomepage
path: root/subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2019-01-18 22:43:16 +0000
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2019-01-18 22:43:16 +0000
commitda1860a27b6328eefa4c5545f4e7fafa3abe64d8 (patch)
treea0ef3e908badb8185b3bfe43bf1d91935ff9ce3b /subr
parenta4d34d48e4e1e48b67aa579e5be4e55f2187c507 (diff)
downloadmidipix_build-da1860a27b6328eefa4c5545f4e7fafa3abe64d8.tar.bz2
midipix_build-da1860a27b6328eefa4c5545f4e7fafa3abe64d8.tar.xz
vars/build.vars:dist: adds mpackage (master.)
subr/pkg_install.subr:pkg_install(): exclude mpackage from package list files. subr/pkg_install_rpm.subr:pkg_install_rpm(): exclude mpackage from RPM generation.
Diffstat (limited to 'subr')
-rw-r--r--subr/pkg_install.subr3
-rw-r--r--subr/pkg_install_rpm.subr3
2 files changed, 4 insertions, 2 deletions
diff --git a/subr/pkg_install.subr b/subr/pkg_install.subr
index c706cfc4..36ff31db 100644
--- a/subr/pkg_install.subr
+++ b/subr/pkg_install.subr
@@ -18,7 +18,8 @@ pkg_install() {
tar -C "${PKG_DESTDIR}" -cpf - . |\
gzip -c -9 - > "${PKG_BASE_DIR}/${PKG_NAME}.tgz"
fi;
- if [ "${PKG_NAME%_minipix}" = "${PKG_NAME}" ]; then
+ if [ "${PKG_NAME%_minipix}" = "${PKG_NAME}" ] \
+ && [ "${PKG_NAME}" != "mpackage" ]; then
if [ ! -e "${PREFIX}/pkglist.${PKG_BUILD_TYPE}" ]; then
touch "${PREFIX}/pkglist.${PKG_BUILD_TYPE}";
fi;
diff --git a/subr/pkg_install_rpm.subr b/subr/pkg_install_rpm.subr
index 9fe67f37..8da10232 100644
--- a/subr/pkg_install_rpm.subr
+++ b/subr/pkg_install_rpm.subr
@@ -5,7 +5,8 @@
pkg_install_rpm() {
local _pkg_url="" _pkg_version_full="" _pkg_version_rpm="";
if [ "${ARG_RPM:-0}" -eq 0 ]\
- || ! [ -x "$(which rpmbuild 2>/dev/null)" ]; then
+ || ! [ -x "$(which rpmbuild 2>/dev/null)" ]\
+ || [ "${PKG_NAME}" = "mpackage" ]; then
return 0;
fi;
if [ -n "${PKG_URL}" ]; then