diff options
author | Andrew Ammerlaan <andrewammerlaan@riseup.net> | 2020-01-05 11:06:13 +0100 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-01-07 05:50:07 +0200 |
commit | 0f00cfe81dc6ef111ba32f511766eda22ddce924 (patch) | |
tree | 8aeedb6a38d1eaa92b162f48992e04564b5cfa6b /dev-libs/libsass/libsass-9999.ebuild | |
parent | net-misc/cfengine: string parsing fix for infra (diff) | |
download | gentoo-0f00cfe81dc6ef111ba32f511766eda22ddce924.tar.gz gentoo-0f00cfe81dc6ef111ba32f511766eda22ddce924.tar.bz2 gentoo-0f00cfe81dc6ef111ba32f511766eda22ddce924.zip |
dev-libs/libsass: Version bump 3.6.3
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-libs/libsass/libsass-9999.ebuild')
-rw-r--r-- | dev-libs/libsass/libsass-9999.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dev-libs/libsass/libsass-9999.ebuild b/dev-libs/libsass/libsass-9999.ebuild index 7bb47a910936..206e7040d5f7 100644 --- a/dev-libs/libsass/libsass-9999.ebuild +++ b/dev-libs/libsass/libsass-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -20,9 +20,6 @@ LICENSE="MIT" SLOT="0/1" # libsass soname IUSE="static-libs" -RDEPEND="" -DEPEND="${RDEPEND}" - DOCS=( Readme.md SECURITY.md ) src_prepare() { @@ -38,9 +35,12 @@ src_prepare() { } multilib_src_configure() { - econf \ - $(use_enable static-libs static) \ + local myeconfargs=( + $(use_enable static-libs static) --enable-shared + ) + + econf "${myeconfargs[@]}" } multilib_src_install() { |