generate spaces instead of tabs into config.c

This commit is contained in:
Benjamin Peterson 2017-01-16 00:05:12 -08:00
parent 8f1378366e
commit a105dd3dc0

View file

@ -259,7 +259,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' |
for mod in $MODS
do
EXTDECLS="${EXTDECLS}extern PyObject* PyInit_$mod(void);$NL"
INITBITS="${INITBITS} {\"$mod\", PyInit_$mod},$NL"
INITBITS="${INITBITS} {\"$mod\", PyInit_$mod},$NL"
done