diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-08-22 18:25:36 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2023-08-29 09:48:58 +0200 |
commit | 589057d78e090051714f3bab40efa4da322fa54e (patch) | |
tree | a9292ae2a1048d71d1c918fc5cb335c3fc50b1db /dev-php | |
parent | net-im/spectrum2: remove unused patch (diff) | |
download | gentoo-589057d78e090051714f3bab40efa4da322fa54e.tar.gz gentoo-589057d78e090051714f3bab40efa4da322fa54e.tar.bz2 gentoo-589057d78e090051714f3bab40efa4da322fa54e.zip |
dev-php/adodb: add missing braces
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/32411
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/adodb/adodb-5.22.2.ebuild | 4 |
1 files 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 |