Skip to content

Commit f92cf6a

Browse files
Release: Fix possbile issue on some systems with OpenOCD PDF files
Some systems have buggy texinfo that uses a regex that is not valid for non-C locales. Solution is to set locale to C before PDF document. Signed-off-by: Anton Kolesov <[email protected]>
1 parent 5bf58c8 commit f92cf6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

release.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ $(OOCD_BUILD_DIR_LINUX)/Makefile:
777777

778778
# Build OpenOCD
779779
define OOCD_BUILD_CMD
780-
$(MAKE) -C $(OOCD_BUILD_DIR_$1) all pdf
780+
$(MAKE) -C $(OOCD_BUILD_DIR_$1) all pdf LC_ALL=C
781781
endef
782782

783783
$(OOCD_BUILD_DIR_LINUX)/src/openocd: $(OOCD_BUILD_DIR_LINUX)/Makefile

0 commit comments

Comments
 (0)