diff options
author | Sam James <sam@gentoo.org> | 2021-01-17 03:35:16 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-01-17 04:10:22 +0000 |
commit | 14287ff6e6cbfb5d79a80d2fc44c931a6426e4cb (patch) | |
tree | 24108397c5d35d942d570a8f782407a1e3ab5d8e /app-pda/libplist | |
parent | app-i18n/tagainijisho: add explicit proxy (diff) | |
download | gentoo-14287ff6e6cbfb5d79a80d2fc44c931a6426e4cb.tar.gz gentoo-14287ff6e6cbfb5d79a80d2fc44c931a6426e4cb.tar.bz2 gentoo-14287ff6e6cbfb5d79a80d2fc44c931a6426e4cb.zip |
app-pda/libplist: fix WhitespaceFound
Package-Manager: Portage-3.0.12.0.2-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-pda/libplist')
-rw-r--r-- | app-pda/libplist/libplist-2.2.0-r2.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app-pda/libplist/libplist-2.2.0-r2.ebuild b/app-pda/libplist/libplist-2.2.0-r2.ebuild index 059c8ae313f3..98d2bb680689 100644 --- a/app-pda/libplist/libplist-2.2.0-r2.ebuild +++ b/app-pda/libplist/libplist-2.2.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -39,7 +39,7 @@ src_prepare() { } src_configure() { - local ECONF_SOURCE=${S} + local ECONF_SOURCE="${S}" local myeconfargs=( $(use_enable static-libs static) ) do_configure() { @@ -101,10 +101,10 @@ src_install() { doins cython/plist.pxd fi - find "${D}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -delete || die - # temporary fix for 2.2.0 release: - # b.g.o 733082, + # temporary fix for 2.2.0 release: + # bug #733082, # https://github.com/libimobiledevice/libplist/issues/163 # upstream commit 137716df3f197a7184c1fba88fcb30480dafd6e0 dosym ./libplist-2.0.pc /usr/$(get_libdir)/pkgconfig/libplist.pc |