8000 py/mkrules.mk: Remove unnecessary ; in makefile. · devmonkZA/micropython@6cf4e96 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6cf4e96

Browse files
Sebastien Rinsozdpgeorge
Sebastien Rinsoz
authored andcommitted
py/mkrules.mk: Remove unnecessary ; in makefile.
This ; make Windows compilation fail with GNU makefile 4.2.1. It was added in 0dc85c9 as part of a shell if- statement, but this if-statement was subsequently removed in 23a693e so the semicolon is not needed.
1 parent a4f4239 commit 6cf4e96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/mkrules.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ $(OBJ): | $(HEADER_BUILD)/qstrdefs.generated.h $(HEADER_BUILD)/mpversion.h
7272
# - else, process all source files ($^) [this covers "make -B" which can set $? to empty]
7373
$(HEADER_BUILD)/qstr.i.last: $(SRC_QSTR) $(QSTR_GLOBAL_DEPENDENCIES) | $(HEADER_BUILD)/mpversion.h
7474
$(ECHO) "GEN $@"
75-
$(Q)$(CPP) $(QSTR_GEN_EXTRA_CFLAGS) $(CFLAGS) $(if $(filter $?,$(QSTR_GLOBAL_DEPENDENCIES)),$^,$(if $?,$?,$^)) >$(HEADER_BUILD)/qstr.i.last;
75+
$(Q)$(CPP) $(QSTR_GEN_EXTRA_CFLAGS) $(CFLAGS) $(if $(filter $?,$(QSTR_GLOBAL_DEPENDENCIES)),$^,$(if $?,$?,$^)) >$(HEADER_BUILD)/qstr.i.last
7676

7777
$(HEADER_BUILD)/qstr.split: $(HEADER_BUILD)/qstr.i.last
7878
$(ECHO) "GEN $@"

0 commit comments

Comments
 (0)
0