From: Valentin Rothberg Date: Wed, 13 May 2015 08:40:52 +0000 (+0200) Subject: checkkconfigsymbols.py: set python2 as default interpreter X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4b6fda0b809cca084b23c0842d713ba1d9c686da;p=linux-beck.git checkkconfigsymbols.py: set python2 as default interpreter 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/scripts/checkkconfigsymbols.py b/scripts/checkkconfigsymbols.py index f35c8ac5d9a0..c89fdcaf06e8 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."""