sys-fs/btrfs-progs: update live ebuild to use comma separator
authorSergei Trofimovich <slyfox@gentoo.org>
Thu, 12 Oct 2017 18:25:05 +0000 (19:25 +0100)
committerSergei Trofimovich <slyfox@gentoo.org>
Thu, 12 Oct 2017 18:25:17 +0000 (19:25 +0100)
https://github.com/kdave/btrfs-progs/commit/ab74bdc1cbc874078f80796537542075741586f3
fixes comma (',') as a list separator.

Package-Manager: Portage-2.3.10, Repoman-2.3.3

sys-fs/btrfs-progs/btrfs-progs-9999.ebuild

index 0dc40a977f4ac939fae23da7a30990690ef6d4b6..49ff5c4dffdf5c7319e3ebaae7a51f96507847e5 100644 (file)
@@ -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[@]}"
 }