aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorMattias EngdegÄrd2022-11-19 12:29:46 +0100
committerMattias EngdegÄrd2022-11-19 12:34:25 +0100
commit87dd44e982048db8170095e8a76204d77297ea29 (patch)
tree9e31e9b2faca8d19b26f5a48df5ea975412ce9d2 /Makefile.in
parent07127e9c29a7d467f951f2ff939aae62ad744302 (diff)
downloademacs-87dd44e982048db8170095e8a76204d77297ea29.tar.gz
emacs-87dd44e982048db8170095e8a76204d77297ea29.zip
* Makefile.in: Escape literal asterisks in regexps
Discovered by Po Lu.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 45b4a59e3db..66fa688feb2 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -410,7 +410,7 @@ advice-on-failure:
410 @echo >&2 '***' 410 @echo >&2 '***'
411 @cat Makefile | \ 411 @cat Makefile | \
412 sed -n '/^# ADVICE-ON-FAILURE-BEGIN:${make-target}/,$${p;/^# ADVICE-ON-FAILURE-END:${make-target}/q};' | \ 412 sed -n '/^# ADVICE-ON-FAILURE-BEGIN:${make-target}/,$${p;/^# ADVICE-ON-FAILURE-END:${make-target}/q};' | \
413 sed 's/^# /*** /' | grep -v '^*** ADVICE-ON-FAILURE-' >&2 413 sed 's/^# /*** /' | grep -v '^\*\*\* ADVICE-ON-FAILURE-' >&2
414 @echo >&2 '***' 414 @echo >&2 '***'
415 @exit ${exit-status} 415 @exit ${exit-status}
416 416
@@ -424,7 +424,7 @@ sanity-check:
424 echo >&2 '***'; \ 424 echo >&2 '***'; \
425 cat Makefile | \ 425 cat Makefile | \
426 sed -n '/^# ADVICE-ON-FAILURE-BEGIN:${make-target}/,$${p;/^# ADVICE-ON-FAILURE-END:${make-target}/q};' | \ 426 sed -n '/^# ADVICE-ON-FAILURE-BEGIN:${make-target}/,$${p;/^# ADVICE-ON-FAILURE-END:${make-target}/q};' | \
427 sed 's/^# /*** /' | grep -v '^*** ADVICE-ON-FAILURE-' >&2; \ 427 sed 's/^# /*** /' | grep -v '^\*\*\* ADVICE-ON-FAILURE-' >&2; \
428 echo >&2 '***'; \ 428 echo >&2 '***'; \
429 exit 1 429 exit 1
430 430