From c7df77dd6b7ff45292a57c4b461cd02a70daae8b Mon Sep 17 00:00:00 2001 From: Lars Wendler Date: Mon, 7 Aug 2017 08:54:24 +0200 Subject: [PATCH] media-libs/gd: Minor code beautification. Package-Manager: Portage-2.3.6, Repoman-2.3.3 --- media-libs/gd/gd-2.2.4.ebuild | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/media-libs/gd/gd-2.2.4.ebuild b/media-libs/gd/gd-2.2.4.ebuild index d1305fbd5ba0..7cdcb905a456 100644 --- a/media-libs/gd/gd-2.2.4.ebuild +++ b/media-libs/gd/gd-2.2.4.ebuild @@ -39,20 +39,21 @@ multilib_src_configure() { # we aren't actually {en,dis}abling X here ... the configure # script uses it just to add explicit -I/-L paths which we # don't care about on Gentoo systems. - ECONF_SOURCE=${S} \ - econf \ - --disable-werror \ - --without-x \ - --without-liq \ - $(use_enable static-libs static) \ - $(use_with fontconfig) \ - $(use_with png) \ - $(use_with tiff) \ - $(use_with truetype freetype) \ - $(use_with jpeg) \ - $(use_with webp) \ - $(use_with xpm) \ + local myeconfargs=( + --disable-werror + --without-x + --without-liq + $(use_enable static-libs static) + $(use_with fontconfig) + $(use_with png) + $(use_with tiff) + $(use_with truetype freetype) + $(use_with jpeg) + $(use_with webp) + $(use_with xpm) $(use_with zlib) + ) + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } multilib_src_install_all() { -- 2.26.2