Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1041382AbdDUS1Y (ORCPT ); Fri, 21 Apr 2017 14:27:24 -0400 Received: from mga14.intel.com ([192.55.52.115]:62419 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1039265AbdDUS1U (ORCPT ); Fri, 21 Apr 2017 14:27:20 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,230,1488873600"; d="scan'208";a="1122189203" From: priyalee.kushwaha@intel.com To: paulmck@linux.vnet.ibm.com, shuah@kernel.org, josh@joshtriplett.org Cc: linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org, Priyalee Kushwaha , Kushwaha@vger.kernel.org Subject: [PATCH v1 1/1] srcu-cbmc: Use /usr/bin/awk instead of /bin/awk Date: Sat, 22 Apr 2017 10:17:11 -0700 Message-Id: <1ad554b0025913fedf4ec3c7953d1a42fe1f0dde.1492879165.git.priyalee.kushwaha@intel.com> X-Mailer: git-send-email 2.10.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 965 Lines: 24 From: Priyalee Kushwaha Most OS distribution have awk in /usr/bin not in /bin Without this patch, kernel-devsrc fails to build as runtime dependency for srcu-cbmc script /bin/awk is not found. Signed-off-by: Kushwaha, Priyalee --- tools/testing/selftests/rcutorture/formal/srcu-cbmc/modify_srcu.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/rcutorture/formal/srcu-cbmc/modify_srcu.awk b/tools/testing/selftests/rcutorture/formal/srcu-cbmc/modify_srcu.awk index 8ff8904..c9e8bc5 100755 --- a/tools/testing/selftests/rcutorture/formal/srcu-cbmc/modify_srcu.awk +++ b/tools/testing/selftests/rcutorture/formal/srcu-cbmc/modify_srcu.awk @@ -1,4 +1,4 @@ -#!/bin/awk -f +#!/usr/bin/awk -f # Modify SRCU for formal verification. The first argument should be srcu.h and # the second should be srcu.c. Outputs modified srcu.h and srcu.c into the -- 2.10.0