summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2022-09-19 10:01:52 +0800
committerPo Lu <luangruo@yahoo.com>2022-09-19 10:01:52 +0800
commit5b3c4004a9647aa2068e54c358e202f57d0ece3c (patch)
tree0ca3ed81d2c14bc333eeab0dfd7ef45e054baa40 /Makefile.in
parent202c416e2e829cfdfde83bc82705be4b7ad6799e (diff)
downloademacs-5b3c4004a9647aa2068e54c358e202f57d0ece3c.tar.gz
Remove calls to intern with a static string from code that runs on X
* Makefile.in (actual-all): Reword build failure advice. * src/bytecode.c (exec_byte_code, syms_of_bytecode): * src/font.c (syms_of_font): * src/hbfont.c (uni_combining): * src/xfns.c (Fx_display_backing_store, Fx_display_visual_class) (x_create_tip_frame, Fx_show_tip, syms_of_xfns): * src/xfont.c (xfont_supported_scripts, xfont_driver) (syms_of_xfont): * src/xsmfns.c (Fhandle_save_session, syms_of_xsmfns): Remove calls to intern with a static string.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in26
1 files changed, 13 insertions, 13 deletions
diff --git a/Makefile.in b/Makefile.in
index de263c6858b..9c9923a1f67 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -380,26 +380,26 @@ bootstrap-all:
actual-all: ${SUBDIR} info $(gsettings_SCHEMAS:.xml=.valid) src-depending-on-lisp
# ADVICE-ON-FAILURE-BEGIN:all
-# You might try to:
-# - run "make bootstrap", which might fix the problem
-# - run "make V=1", which displays the full commands invoked by make,
-#   to further investigate the problem
+# It can help to run "make bootstrap", which can resolve many build
+# failures caused by incrementally building from a previously built
+# checkout.
+
+# Failing that, running "make V=1" will cause Make to display the full
+# commands it invokes to build Emacs, which helps to investigate the
+# problem.
# ADVICE-ON-FAILURE-END:all
# ADVICE-ON-FAILURE-BEGIN:bootstrap
-# You might try to:
-# - run "git clean -fdx" and run "make bootstrap" again, which might
-#   fix the problem
-#   !BEWARE! "git clean -fdx" deletes all files that are not under
-#   !BEWARE! version control, which means that all changes to such
-#   !BEWARE! files will be lost and cannot be restored later
-# - run "make V=1", which displays the full commands invoked by make,
-#   to further investigate the problem
+# If "make bootstrap" failed, try running "make extraclean" and then
+# "make bootstrap" again. If that still fails and you are building
+# Emacs from a repository checkout, run "git clean -fdx" and retry
+# "make bootstrap". Otherwise, please report a bug by sending email
+# to bug-gnu-emacs@gnu.org.
# ADVICE-ON-FAILURE-END:bootstrap
advice-on-failure:
@echo
- @echo " \"make ${make-target}\" failed with exit status ${exit-status}."
+ @echo "make ${make-target}\" failed with exit status ${exit-status}."
@cat Makefile | \
sed -n '/^# ADVICE-ON-FAILURE-BEGIN:${make-target}/,$${p;/^# ADVICE-ON-FAILURE-END:${make-target}/q};' | \
sed 's/^# //' | grep -v '^ADVICE-ON-FAILURE-'