From: Lars Wendler Date: Mon, 7 Aug 2017 06:54:24 +0000 (+0200) Subject: media-libs/gd: Minor code beautification. X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=c7df77dd6b7ff45292a57c4b461cd02a70daae8b;p=gentoo.git media-libs/gd: Minor code beautification. Package-Manager: Portage-2.3.6, Repoman-2.3.3 --- 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() {