Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6ff8e80

Browse filesBrowse files
BridgeARMylesBorins
authored andcommitted
build: check for different deprecation signatures
Right now we strictly test for `DEP00XX`. We are already above that number of deprecations and it is better to have a wildcard for the first three numbers. Only the last character has to match the X to print a warning. PR-URL: #20384 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent 5dc293d commit 6ff8e80
Copy full SHA for 6ff8e80

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Collapse file

‎Makefile‎

Copy file name to clipboardExpand all lines: Makefile
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -813,8 +813,8 @@ release-only:
813813
exit 1 ; \
814814
fi
815815
@if [ "$(DISTTYPE)" != "nightly" ] && [ "$(DISTTYPE)" != "next-nightly" ] && \
816-
`grep -q DEP00XX doc/api/deprecations.md`; then \
817-
echo 'Please update DEP00XX in doc/api/deprecations.md (See doc/releases.md)' ; \
816+
`grep -q DEP...X doc/api/deprecations.md`; then \
817+
echo 'Please update DEP...X in doc/api/deprecations.md (See doc/releases.md)' ; \
818818
exit 1 ; \
819819
fi
820820
@if [ "$(shell git status --porcelain | egrep -v '^\?\? ')" = "" ]; then \

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.