From: Sergei Trofimovich Date: Thu, 12 Oct 2017 18:25:05 +0000 (+0100) Subject: sys-fs/btrfs-progs: update live ebuild to use comma separator X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b1c99556303893ae969b5e6864d3ad525e7e5c43;p=gentoo.git sys-fs/btrfs-progs: update live ebuild to use comma separator https://github.com/kdave/btrfs-progs/commit/ab74bdc1cbc874078f80796537542075741586f3 fixes comma (',') as a list separator. Package-Manager: Portage-2.3.10, Repoman-2.3.3 --- diff --git a/sys-fs/btrfs-progs/btrfs-progs-9999.ebuild b/sys-fs/btrfs-progs/btrfs-progs-9999.ebuild index 0dc40a977f4a..49ff5c4dffdf 100644 --- a/sys-fs/btrfs-progs/btrfs-progs-9999.ebuild +++ b/sys-fs/btrfs-progs/btrfs-progs-9999.ebuild @@ -15,7 +15,7 @@ if [[ ${PV} != 9999 ]]; then else WANT_LIBTOOL=none inherit autotools git-r3 - EGIT_REPO_URI="git://repo.or.cz/btrfs-progs-unstable/devel.git" + EGIT_REPO_URI="https://github.com/kdave/btrfs-progs.git" EGIT_BRANCH="devel" fi @@ -81,9 +81,7 @@ src_configure() { --bindir="${EPREFIX}"/sbin $(use_enable convert) $(use_enable elibc_glibc backtrace) - # No whitespace due to 'ext2,reiserfs' being invalid - # for configure. TODO: Why it's not valid? - --with-convert=ext2$(usex reiserfs 'reiserfs' '') + --with-convert=ext2$(usex reiserfs ',reiserfs' '') ) econf "${myeconfargs[@]}" }