Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753710AbbEMIlN (ORCPT ); Wed, 13 May 2015 04:41:13 -0400 Received: from mail-wi0-f176.google.com ([209.85.212.176]:38901 "EHLO mail-wi0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751820AbbEMIlJ (ORCPT ); Wed, 13 May 2015 04:41:09 -0400 From: Valentin Rothberg To: gregkh@linuxfoundation.org Cc: stefan.hengelein@fau.de, linux-kernel@vger.kernel.org, Valentin Rothberg Subject: [PATCH] checkkconfigsymbols.py: set python2 as default interpreter Date: Wed, 13 May 2015 10:40:52 +0200 Message-Id: <1431506452-7662-1-git-send-email-valentinrothberg@gmail.com> X-Mailer: git-send-email 2.4.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 864 Lines: 26 Some more recent distributions set the default interpreter to python3, causing the script to break since it's written for python2. Signed-off-by: Valentin Rothberg --- scripts/checkkconfigsymbols.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/checkkconfigsymbols.py b/scripts/checkkconfigsymbols.py index 74086a583d8d..8c297fee8200 100755 --- a/scripts/checkkconfigsymbols.py +++ b/scripts/checkkconfigsymbols.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 """Find Kconfig symbols that are referenced but not defined.""" -- 2.4.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/