diff options
author | Michael Haubenwallner <haubi@gentoo.org> | 2020-09-28 11:28:01 +0200 |
---|---|---|
committer | Michael Haubenwallner <haubi@gentoo.org> | 2020-09-28 11:28:40 +0200 |
commit | 4748c2e097dc3cc474b787ac82f34f882b5f3973 (patch) | |
tree | 65f72d556d3a60cae1798b6c7c63bfbef3183f30 /dev-db | |
parent | net-mail/fetchmail: switch to tmpfiles eclass (diff) | |
download | gentoo-4748c2e097dc3cc474b787ac82f34f882b5f3973.tar.gz gentoo-4748c2e097dc3cc474b787ac82f34f882b5f3973.tar.bz2 gentoo-4748c2e097dc3cc474b787ac82f34f882b5f3973.zip |
dev-db/oracle-instantclient: fix unpack problem
Closes: https://bugs.gentoo.org/745057
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Michael Haubenwallner <haubi@gentoo.org>
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/oracle-instantclient/oracle-instantclient-19.6.0.0-r1.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/dev-db/oracle-instantclient/oracle-instantclient-19.6.0.0-r1.ebuild b/dev-db/oracle-instantclient/oracle-instantclient-19.6.0.0-r1.ebuild index 94909337b674..7c6f515d7d1d 100644 --- a/dev-db/oracle-instantclient/oracle-instantclient-19.6.0.0-r1.ebuild +++ b/dev-db/oracle-instantclient/oracle-instantclient-19.6.0.0-r1.ebuild @@ -101,13 +101,13 @@ set_my_abivars() { [[ ${abi} == 'default' ]] && abi=${ARCH} MY_PLAT=MY_PLAT_${abi} ; MY_PLAT=${!MY_PLAT} # platform name MY_BITS=MY_BITS_${abi} ; MY_BITS=${!MY_BITS} # platform bitwidth - MY_A=MY_A_${abi} ; MY_A=${!MY_A} # runtime distfile - MY_A_jdbc=MY_A_${abi}_jdbc ; MY_A_jdbc=${!MY_A_jdbc} # jdbc distfile - MY_A_odbc=MY_A_${abi}_odbc ; MY_A_odbc=${!MY_A_odbc} # odbc distfile - MY_A_precomp=MY_A_${abi}_precomp; MY_A_precomp=${!MY_A_precomp} # precomp distfile - MY_A_sdk=MY_A_${abi}_sdk ; MY_A_sdk=${!MY_A_sdk} # sdk distfile - MY_A_sqlplus=MY_A_${abi}_sqlplus; MY_A_sqlplus=${!MY_A_sqlplus} # sqlplus distfile - MY_A_tools=MY_A_${abi}_tools ; MY_A_tools=${!MY_A_tools} # tools distfile + MY_A=MY_A_${abi} ; MY_A=${!MY_A##*/} # runtime distfile + MY_A_jdbc=MY_A_${abi}_jdbc ; MY_A_jdbc=${!MY_A_jdbc##*/} # jdbc distfile + MY_A_odbc=MY_A_${abi}_odbc ; MY_A_odbc=${!MY_A_odbc##*/} # odbc distfile + MY_A_precomp=MY_A_${abi}_precomp; MY_A_precomp=${!MY_A_precomp##*/} # precomp distfile + MY_A_sdk=MY_A_${abi}_sdk ; MY_A_sdk=${!MY_A_sdk##*/} # sdk distfile + MY_A_sqlplus=MY_A_${abi}_sqlplus; MY_A_sqlplus=${!MY_A_sqlplus##*/} # sqlplus distfile + MY_A_tools=MY_A_${abi}_tools ; MY_A_tools=${!MY_A_tools##*/} # tools distfile [[ -n ${MY_PLAT} ]] } |