diff options
author | David Seifert <soap@gentoo.org> | 2020-10-03 23:47:39 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-10-03 23:47:39 +0200 |
commit | b112577cfda77a051d906dadccaeb7ef67fe5559 (patch) | |
tree | 45080c1ee3da2ac81dd87fb202bb20e1d5d4b775 /sci-calculators | |
parent | dev-python/zipp: bump to 3.3.0 (diff) | |
download | gentoo-b112577cfda77a051d906dadccaeb7ef67fe5559.tar.gz gentoo-b112577cfda77a051d906dadccaeb7ef67fe5559.tar.bz2 gentoo-b112577cfda77a051d906dadccaeb7ef67fe5559.zip |
sci-calculators/units: [QA] Do not use EROOT in src_configure
* EROOT is not defined in src_* phases.
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-calculators')
-rw-r--r-- | sci-calculators/units/units-2.18.ebuild | 2 | ||||
-rw-r--r-- | sci-calculators/units/units-2.19-r1.ebuild | 2 | ||||
-rw-r--r-- | sci-calculators/units/units-2.20.ebuild | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sci-calculators/units/units-2.18.ebuild b/sci-calculators/units/units-2.18.ebuild index 119605f9309f..b110fbdd91bf 100644 --- a/sci-calculators/units/units-2.18.ebuild +++ b/sci-calculators/units/units-2.18.ebuild @@ -38,7 +38,7 @@ pkg_setup() { src_configure() { econf \ - --sharedstatedir="${EROOT}/var/lib" \ + --sharedstatedir="${EPREFIX}"/var/lib \ ac_cv_path_PYTHON=no } diff --git a/sci-calculators/units/units-2.19-r1.ebuild b/sci-calculators/units/units-2.19-r1.ebuild index b6062ea69bb3..08fba4f5f9b1 100644 --- a/sci-calculators/units/units-2.19-r1.ebuild +++ b/sci-calculators/units/units-2.19-r1.ebuild @@ -41,7 +41,7 @@ pkg_setup() { src_configure() { econf \ - --sharedstatedir="${EROOT}/var/lib" \ + --sharedstatedir="${EPREFIX}"/var/lib \ ac_cv_path_PYTHON=no } diff --git a/sci-calculators/units/units-2.20.ebuild b/sci-calculators/units/units-2.20.ebuild index 512e983f4b3a..a601e8f3fc01 100644 --- a/sci-calculators/units/units-2.20.ebuild +++ b/sci-calculators/units/units-2.20.ebuild @@ -39,7 +39,7 @@ DOCS=( src_configure() { econf \ - --sharedstatedir="${EROOT}/var/lib" \ + --sharedstatedir="${EPREFIX}"/var/lib \ ac_cv_path_PYTHON=no } |