From: Valentin Rothberg Date: Wed, 13 May 2015 08:40:52 +0000 (+0200) Subject: checkkconfigsymbols.py: set python2 as default interpreter X-Git-Tag: v4.14-rc1~5165^2~82 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b6fda0b809cca084b23c0842d713ba1d9c686da;p=platform%2Fkernel%2Flinux-rpi.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 f35c8ac..c89fdca 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."""