From: Benjamin Peterson Date: Mon, 16 Jan 2017 08:05:12 +0000 (-0800) Subject: generate spaces instead of tabs into config.c X-Git-Tag: v2.7.14rc1~298 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebcf338a696e1c8020e86da7722fe2438b3e1223;p=thirdparty%2FPython%2Fcpython.git generate spaces instead of tabs into config.c --- diff --git a/Modules/makesetup b/Modules/makesetup index 1bffcbf4fd77..db5c47ee04dd 100755 --- a/Modules/makesetup +++ b/Modules/makesetup @@ -261,7 +261,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' | for mod in $MODS do EXTDECLS="${EXTDECLS}extern void init$mod(void);$NL" - INITBITS="${INITBITS} {\"$mod\", init$mod},$NL" + INITBITS="${INITBITS} {\"$mod\", init$mod},$NL" done