diff options
Diffstat (limited to 'app-office/calligra/calligra-9999.ebuild')
-rw-r--r-- | app-office/calligra/calligra-9999.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app-office/calligra/calligra-9999.ebuild b/app-office/calligra/calligra-9999.ebuild index 97cea479c13..0822a6951c5 100644 --- a/app-office/calligra/calligra-9999.ebuild +++ b/app-office/calligra/calligra-9999.ebuild @@ -157,7 +157,10 @@ src_configure() { # applications for cal_ft in ${CAL_FTS}; do - use calligra_features_${cal_ft} && myproducts+=( ${cal_ft^^} ) + # Switch to ^^ when we switch to EAPI=6. + #local prod=${cal_ft^^} + local prod=$(tr '[:lower:]' '[:upper:]' <<<"${cal_ft}") + use calligra_features_${cal_ft} && myproducts+=( "${prod}" ) done local mycmakeargs=( -DPRODUCTSET="${myproducts[*]}" ) |