diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2024-01-14 10:51:21 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2024-01-22 06:29:20 -0500 |
commit | bb3db05a5fb22e013893777ed5ad1cb03e138e99 (patch) | |
tree | 912196b1f83b04ed9ec0b1710fb8a937f93e1e84 /eclass | |
parent | sci-mathematics/gap: fix regeneration of aclocal.m4 (diff) | |
download | gentoo-bb3db05a5fb22e013893777ed5ad1cb03e138e99.tar.gz gentoo-bb3db05a5fb22e013893777ed5ad1cb03e138e99.tar.bz2 gentoo-bb3db05a5fb22e013893777ed5ad1cb03e138e99.zip |
gap-pkg.eclass: drop internal _gap-pkg_gaparch function
Since removing the --bindir and --libdir flags from the default econf,
this function is unused.
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gap-pkg.eclass | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/eclass/gap-pkg.eclass b/eclass/gap-pkg.eclass index 0423c9e54ef2..cc80d5bf1ba8 100644 --- a/eclass/gap-pkg.eclass +++ b/eclass/gap-pkg.eclass @@ -108,18 +108,6 @@ _gap-pkg_gaproot() { echo "${ESYSROOT}/usr/$(get_libdir)/gap" } -# @FUNCTION: _gap-pkg_gaparch -# @INTERNAL -# @USAGE: -# @DESCRIPTION: -# Return the variable $GAParch from sysinfo.gap. GAP packages put their -# executables and libraries in bin/$GAParch, and to accomplish that, we -# sometimes need to pass $GAParch to the build system. -_gap-pkg_gaparch() { - # Use a subshell so we don't pollute the environment. - ( . $(_gap-pkg_gaproot)/sysinfo.gap && echo "${GAParch}" ) -} - # @FUNCTION: gap-pkg_econf # @USAGE: [extra econf args] # @DESCRIPTION: |