commit: 589057d78e090051714f3bab40efa4da322fa54e Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Tue Aug 22 16:25:36 2023 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Tue Aug 29 07:48:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=589057d7
dev-php/adodb: add missing braces Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/32411 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> dev-php/adodb/adodb-5.22.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-php/adodb/adodb-5.22.2.ebuild b/dev-php/adodb/adodb-5.22.2.ebuild index df7382d87356..0ffad569d070 100644 --- a/dev-php/adodb/adodb-5.22.2.ebuild +++ b/dev-php/adodb/adodb-5.22.2.ebuild @@ -31,8 +31,8 @@ src_install() { DOCS+=" session/*.txt session/*.xml pear/auth_adodb_example.php" DOCS+=" pear/readme.Auth.txt" - dodoc $DOCS - rm -f $DOCS || die "failed to remove docs before installation" + dodoc ${DOCS} + rm -f ${DOCS} || die "failed to remove docs before installation" insinto "/usr/share/php/${PN}" doins *.php
