summaryrefslogtreecommitdiff
blob: d1135267e8ccfb90bd299e6ceab35dba1d1ddc5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

# Eblit informing a user when they try to apply two machine patches to the
# same tree.  Most machine patches are exclusive to avoid conflicts.

err_only_one_mach_allowed() {
	echo -e ""
	eerror "A patchset for a specific machine-type has already been selected."
	eerror "No other patches for machines-types are permitted.  You will need a"
	eerror "separate copy of the kernel sources for each different machine-type"
	eerror "you want to build a kernel for."
	die "Only one machine-type patchset allowed"
}