diff options
Diffstat (limited to 'app-office/calligra/calligra-2.9.6.ebuild')
-rw-r--r-- | app-office/calligra/calligra-2.9.6.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app-office/calligra/calligra-2.9.6.ebuild b/app-office/calligra/calligra-2.9.6.ebuild index 4031e5beaaa..ea5198b88d1 100644 --- a/app-office/calligra/calligra-2.9.6.ebuild +++ b/app-office/calligra/calligra-2.9.6.ebuild @@ -160,7 +160,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[*]}" ) |