From patchwork Fri Oct 8 21:51:33 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 12546523 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1FEAAC433EF for ; Fri, 8 Oct 2021 21:51:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 064C261038 for ; Fri, 8 Oct 2021 21:51:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S243490AbhJHVxf (ORCPT ); Fri, 8 Oct 2021 17:53:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36634 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231774AbhJHVxe (ORCPT ); Fri, 8 Oct 2021 17:53:34 -0400 Received: from bombadil.infradead.org (unknown [IPv6:2607:7c80:54:e::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1E741C061570 for ; Fri, 8 Oct 2021 14:51:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=BOIJaRSfpKY+mhtnrEFxb7cgPtuJ/B0W3GbcwDdP/a0=; b=orB7rxnMC07hrJlTRg9lihqrX4 QXKeWEwyUeQGtECACD6pePzu8GNSlFHozkBBfbJDNh5vGsdwnof3FOnCloqsO5cUWmouraPvhLTty rB4KhM9/x+Zrmb9O2SR86qktqAi1nQlOU61Q8Jx6XXXYVoUOZvkhcncPqbZnqcNpTAWZ5YwHkXQUc JKdXcfQtneiSZgHdC1ze5u6+9WG+ZwPBoCNb9F6oD1APx0g4QwrdalRYW59nQzWnLtCVyhYx/nUBk Dp2eQtkwTmBsEKqrg/+cAu5cskVbidu4aeu55KBv2Buo0u2a8DISWgTL4OFMBfzBC4YBWOfrc1dYP pCufcP7w==; Received: from [2601:1c0:6280:3f0::aa0b] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1mYxmA-004F0S-B0; Fri, 08 Oct 2021 21:51:34 +0000 From: Randy Dunlap Cc: Randy Dunlap , Masahiro Yamada , Michal Marek , Nick Desaulniers , linux-kbuild@vger.kernel.org, Jeff Dike , Richard Weinberger , Anton Ivanov , linux-um@lists.infradead.org, x86@kernel.org Subject: [PATCH] um: Add missing "FORCE" target when using if_changed Date: Fri, 8 Oct 2021 14:51:33 -0700 Message-Id: <20211008215133.9371-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 To: unlisted-recipients:; (no To-header on input) Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org 'make ARCH=um' says: ../arch/x86/um/Makefile:44: FORCE prerequisite is missing and adding "FORCE" there makes it be quiet, so do it. :) Fixes: e1f86d7b4b2a ("kbuild: warn if FORCE is missing for if_changed(_dep,_rule) and filechk") Signed-off-by: Randy Dunlap Cc: Masahiro Yamada Cc: Michal Marek Cc: Nick Desaulniers Cc: linux-kbuild@vger.kernel.org Cc: Jeff Dike Cc: Richard Weinberger Cc: Anton Ivanov Cc: linux-um@lists.infradead.org Cc: x86@kernel.org --- arch/x86/um/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20211007.orig/arch/x86/um/Makefile +++ linux-next-20211007/arch/x86/um/Makefile @@ -40,7 +40,7 @@ $(obj)/user-offsets.s: c_flags = -Wp,-MD -Iarch/x86/include/generated targets += user-offsets.s -include/generated/user_constants.h: $(obj)/user-offsets.s +include/generated/user_constants.h: $(obj)/user-offsets.s FORCE $(call filechk,offsets,__USER_CONSTANT_H__) UNPROFILE_OBJS := stub_segv.o