diff options
Diffstat (limited to 'sys-boot/linux/linux-4.10.13.ebuild')
-rw-r--r-- | sys-boot/linux/linux-4.10.13.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys-boot/linux/linux-4.10.13.ebuild b/sys-boot/linux/linux-4.10.13.ebuild index 19b339a..cb9697b 100644 --- a/sys-boot/linux/linux-4.10.13.ebuild +++ b/sys-boot/linux/linux-4.10.13.ebuild @@ -24,6 +24,7 @@ DEPEND="" RDEPEND="${DEPEND}" src_configure() { + # Fix ARCH variable [ "$ARCH" = "amd64" ] && ARCH="x86" emake mrproper @@ -40,13 +41,13 @@ src_configure() { ( cd "${S}" "${FILESDIR}"/config_prepare.sh $ARGS - ) || fail + ) || die "Configuration application failed" # Process changes emake olddefconfig 2>/dev/null # Check changes - eerror "$("${FILESDIR}"/config_miss.sh $ARGS)" || fail + OUT="$("${FILESDIR}"/config_miss.sh $ARGS)" || die "$OUT" } src_install() { |