From patchwork Wed Jan 19 10:33:32 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Muhammad Usama Anjum X-Patchwork-Id: 534181 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 93794C433F5 for ; Wed, 19 Jan 2022 10:34:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1348533AbiASKeG (ORCPT ); Wed, 19 Jan 2022 05:34:06 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47802 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1343802AbiASKeB (ORCPT ); Wed, 19 Jan 2022 05:34:01 -0500 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e3e3]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6A00BC061746; Wed, 19 Jan 2022 02:34:01 -0800 (PST) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: usama.anjum) with ESMTPSA id B49011F44460 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1642588440; bh=Ok+oNRTJoeyZh+8y6c73p7PjPSC6YypeZj6bp2whWWs=; h=From:To:Cc:Subject:Date:From; b=n7US8/u1f9kWZhQhLywVehUPFSkcpOaeBRuWBMcuc4nlETNS8TpfvWuXlFFCAMcLO Y3ZAIn/8aC12d1EJhLLHeMqK2Ew1NYE2FGgnSh7IRLbl40A3y7+qz6ZbEkF9z3RMFS rdGCRQLot31Vz9eAOFWabLBfNN67H0h6VXQ47xQQDFhR3g6+RNn6asuFJzoaFWOvSv haWpwQNwT26QisGKzq4aeM6XTqxNKibzB7bW3MhgrzHt7MFebLfawZz/tWgEmIguyN B7UYdTfIYZYsDuIL7SPXQrqRYwimbxWLtoiPLnZE7ezfk95dOQ7puLHpjxNaBFrS6Y BfGE8S8EnrpCw== From: Muhammad Usama Anjum To: Thomas Gleixner , Ingo Molnar , Peter Zijlstra , Darren Hart , Davidlohr Bueso , =?utf-8?q?Andr=C3=A9_Almeida?= , Shuah Khan Cc: Muhammad Usama Anjum , kernel@collabora.com, linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org Subject: [PATCH] selftests: futex: set DEFAULT_INSTALL_HDR_PATH Date: Wed, 19 Jan 2022 15:33:32 +0500 Message-Id: <20220119103332.2887370-1-usama.anjum@collabora.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org If only futex selftest is compiled, uapi header files are copied to the selftests/futex/functional directory. This copy isn't needed. Set the DEFAULT_INSTALL_HDR_PATH variable to 1 to use the default header install path only. This removes extra copy of header file. Signed-off-by: Muhammad Usama Anjum --- tools/testing/selftests/futex/functional/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/testing/selftests/futex/functional/Makefile b/tools/testing/selftests/futex/functional/Makefile index 5cc38de9d8ea..9a8c3700d773 100644 --- a/tools/testing/selftests/futex/functional/Makefile +++ b/tools/testing/selftests/futex/functional/Makefile @@ -24,6 +24,7 @@ TEST_PROGS := run.sh top_srcdir = ../../../../.. KSFT_KHDR_INSTALL := 1 +DEFAULT_INSTALL_HDR_PATH := 1 include ../../lib.mk $(TEST_GEN_FILES): $(HEADERS)