Skip to content

Commit d7b526c

Browse files
Trotttargos
authored andcommitted
build: fix LINT_MD_NEWER assignment
Indentation with a tab breaks the functionality, resulting in linting all .md files when any one is changed. For consistency with the rest of the Makefile and to restore functionality, remove indentation. Refs: #32614 (comment) PR-URL: #32712 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 809d42c commit d7b526c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1229,9 +1229,9 @@ lint-md-build:
12291229
$(warning "Deprecated no-op target 'lint-md-build'")
12301230

12311231
ifeq ("$(wildcard tools/.mdlintstamp)","")
1232-
LINT_MD_NEWER =
1232+
LINT_MD_NEWER =
12331233
else
1234-
LINT_MD_NEWER = -newer tools/.mdlintstamp
1234+
LINT_MD_NEWER = -newer tools/.mdlintstamp
12351235
endif
12361236

12371237
LINT_MD_TARGETS = doc src lib benchmark test tools/doc tools/icu $(wildcard *.md)

0 commit comments

Comments
 (0)