diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/kconfig/mconf.c | 3 | ||||
| -rw-r--r-- | scripts/kconfig/nconf.c | 3 | ||||
| -rwxr-xr-x | scripts/package/install-extmod-build | 2 | 
3 files changed, 7 insertions, 1 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c index 84ea9215c0a7..b8b7bba84a65 100644 --- a/scripts/kconfig/mconf.c +++ b/scripts/kconfig/mconf.c @@ -12,6 +12,7 @@  #include <errno.h>  #include <fcntl.h>  #include <limits.h> +#include <locale.h>  #include <stdarg.h>  #include <stdlib.h>  #include <string.h> @@ -931,6 +932,8 @@ int main(int ac, char **av)  	signal(SIGINT, sig_handler); +	setlocale(LC_ALL, ""); +  	if (ac > 1 && strcmp(av[1], "-s") == 0) {  		silent = 1;  		/* Silence conf_read() until the real callback is set up */ diff --git a/scripts/kconfig/nconf.c b/scripts/kconfig/nconf.c index ae1fe5f60327..521700ed7152 100644 --- a/scripts/kconfig/nconf.c +++ b/scripts/kconfig/nconf.c @@ -7,6 +7,7 @@  #ifndef _GNU_SOURCE  #define _GNU_SOURCE  #endif +#include <locale.h>  #include <string.h>  #include <strings.h>  #include <stdlib.h> @@ -1478,6 +1479,8 @@ int main(int ac, char **av)  	int lines, columns;  	char *mode; +	setlocale(LC_ALL, ""); +  	if (ac > 1 && strcmp(av[1], "-s") == 0) {  		/* Silence conf_read() until the real callback is set up */  		conf_set_message_callback(NULL); diff --git a/scripts/package/install-extmod-build b/scripts/package/install-extmod-build index b96538787f3d..054fdf45cc37 100755 --- a/scripts/package/install-extmod-build +++ b/scripts/package/install-extmod-build @@ -63,7 +63,7 @@ if [ "${CC}" != "${HOSTCC}" ]; then  	# Clear VPATH and srcroot because the source files reside in the output  	# directory.  	# shellcheck disable=SC2016 # $(MAKE) and $(build) will be expanded by Make -	"${MAKE}" run-command KBUILD_RUN_COMMAND='+$(MAKE) HOSTCC='"${CC}"' VPATH= srcroot=. $(build)='"$(realpath --relative-base=. "${destdir}")"/scripts +	"${MAKE}" run-command KBUILD_RUN_COMMAND='+$(MAKE) HOSTCC='"${CC}"' VPATH= srcroot=. $(build)='"$(realpath --relative-to=. "${destdir}")"/scripts  	rm -f "${destdir}/scripts/Kbuild"  fi  | 
