From 1f0fcfd8bf6344dcb4f825a7d790a308d117b31b Mon Sep 17 00:00:00 2001 From: avoidr Date: Sat, 6 Jul 2019 00:17:52 +0200 Subject: [PATCH] linux5.1: remove pointless defconfig right before allmodconfig [ci skip] --- srcpkgs/linux5.1/template | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/srcpkgs/linux5.1/template b/srcpkgs/linux5.1/template index e4f8197d4bf097..6e7b9a4acd5539 100644 --- a/srcpkgs/linux5.1/template +++ b/srcpkgs/linux5.1/template @@ -42,7 +42,7 @@ do_configure() { # If there's a file called -dotconfig, use it to # configure the kernel; otherwise use arch defaults and all stuff - # as modules (defconfig+allmodconfig). + # as modules (allmodconfig). local arch subarch _args case "$XBPS_TARGET_MACHINE" in @@ -72,8 +72,7 @@ do_configure() { cp -f ${FILESDIR}/${XBPS_TARGET_MACHINE%%-musl}-dotconfig .config make ${makejobs} ARCH=$arch ${_args} oldconfig else - msg_normal "Defaulting to 'defconfig and allmodconfig'.\n" - make ${makejobs} ARCH=$arch ${_args} defconfig + msg_normal "Defaulting to 'allmodconfig'.\n" make ${makejobs} ARCH=$arch ${_args} allmodconfig fi # Always use our revision to CONFIG_LOCALVERSION to match our pkg version.