summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-10-06 04:29:37 +0100
committerSam James <sam@gentoo.org>2021-10-06 04:31:02 +0100
commitd8507aa357ce6fd607535c217085e66702d687b3 (patch)
tree08c81815c34aef8ace5781574d5e1227d603cd1a /sys-fs
parentapp-crypt/jitterentropy-rngd: drop old. (diff)
downloadgentoo-d8507aa357ce6fd607535c217085e66702d687b3.tar.gz
gentoo-d8507aa357ce6fd607535c217085e66702d687b3.tar.bz2
gentoo-d8507aa357ce6fd607535c217085e66702d687b3.zip
sys-fs/treesize: fix eautoreconf
config.guess and config.sub were in the tarball as symlinks to a non-existent file (in most cases) for an old version of automake which meant eautoreconf couldn't: 1. use them; 2. re-generate them (as usual) Just delete them so that they get copied from the usual location instead. Closes: https://bugs.gentoo.org/760498 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/treesize/treesize-0.54.1-r1.ebuild7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys-fs/treesize/treesize-0.54.1-r1.ebuild b/sys-fs/treesize/treesize-0.54.1-r1.ebuild
index 90940c262473..16fa356e1b88 100644
--- a/sys-fs/treesize/treesize-0.54.1-r1.ebuild
+++ b/sys-fs/treesize/treesize-0.54.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -23,5 +23,10 @@ PATCHES=(
src_prepare() {
default
+
+ # Bogus shipped symlinks to a fixed version of automake
+ # bug #760498
+ rm config.{guess,sub} || die
+
eautoreconf
}