Update of /cvsroot/kernelloader/linux/buildroot
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7242/buildroot
Modified Files:
build.sh
Log Message:
Fixed building of python on German machines.
Index: build.sh
===================================================================
RCS file: /cvsroot/kernelloader/linux/buildroot/build.sh,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** build.sh 3 Aug 2014 13:15:19 -0000 1.7
--- build.sh 18 Aug 2014 15:44:08 -0000 1.8
***************
*** 27,30 ****
fi
! make oldconfig || exit -1
! make || exit -1
--- 27,31 ----
fi
! # Python can't detect zlib.h when using the German language, so use LANG=C.
! LANG=C make oldconfig || exit -1
! LANG=C make || exit -1
|