diff options
author | Craig Inches <craig@craiginches.com> | 2016-05-22 23:06:03 +0100 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2016-05-23 09:45:26 +0800 |
commit | e58aa1ec7b03affed05e6d5607229ea26bf8a4ad (patch) | |
tree | b651104d26c307c0ee09f502fbb5abacb0a27c5f /www-apps/bugzilla | |
parent | www-apps/bugzilla: Ebuild Cleanup to vns. 4.4.12, 5.0.3 (diff) | |
download | gentoo-e58aa1ec7b03affed05e6d5607229ea26bf8a4ad.tar.gz gentoo-e58aa1ec7b03affed05e6d5607229ea26bf8a4ad.tar.bz2 gentoo-e58aa1ec7b03affed05e6d5607229ea26bf8a4ad.zip |
www-apps/bugzilla: Ebuild Cleanup to vns. 4.4.12, 5.0.3
Fixed type, and directory reference (rm calls of "|| die") to fperms
Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1516
Signed-off-by: Ian Delaney <idella4@gentoo.org>
Diffstat (limited to 'www-apps/bugzilla')
-rw-r--r-- | www-apps/bugzilla/bugzilla-4.4.12.ebuild | 4 | ||||
-rw-r--r-- | www-apps/bugzilla/bugzilla-5.0.3.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/www-apps/bugzilla/bugzilla-4.4.12.ebuild b/www-apps/bugzilla/bugzilla-4.4.12.ebuild index 587db6144196..59d0cfafbb56 100644 --- a/www-apps/bugzilla/bugzilla-4.4.12.ebuild +++ b/www-apps/bugzilla/bugzilla-4.4.12.ebuild @@ -115,10 +115,10 @@ src_install () { fperms +x "${f#${D}}" done - fperms u+x "${MY_HTDOCSDIR}"/jobqueue.pl || die + fperms u+x "${MY_HTDOCSDIR}"/jobqueue.pl # configuration must be executable - fperms u+x "${MY_HTDOCSDIR}"/checksetup.pl || die + fperms u+x "${MY_HTDOCSDIR}"/checksetup.pl # bug 487476 mkdir "${D}${MY_HTDOCSDIR}"/lib || die diff --git a/www-apps/bugzilla/bugzilla-5.0.3.ebuild b/www-apps/bugzilla/bugzilla-5.0.3.ebuild index 8adfe0e1f5c2..ecdf6bc1d894 100644 --- a/www-apps/bugzilla/bugzilla-5.0.3.ebuild +++ b/www-apps/bugzilla/bugzilla-5.0.3.ebuild @@ -119,10 +119,10 @@ src_install () { fperms +x "${f#${D}}" done - fperms u+x "${D}${MY_HTDOCSDIR}"/jobqueue.pl || die + fperms u+x "${MY_HTDOCSDIR}"/jobqueue.pl # configuration must be executable - fperms u+x "${D}${MY_HTDOCSDIR}"/checksetup.pl || die + fperms u+x "${MY_HTDOCSDIR}"/checksetup.pl # bug 487476 mkdir "${D}${MY_HTDOCSDIR}"/lib || die |