blob: af0b7fd0b16d3290e43417f7705567573007faea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# Patch all 2.13 configures to be safe
patch_targets() {
fgrep -r --include configure -l "Generated automatically using autoconf version 2.13" "${WORKDIR}"
}
# This patch is always required
patch_required() {
return 0
}
|