aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2022-06-28 14:40:52 +0200
committerMichael Albinus2022-06-28 14:40:52 +0200
commita8e72eb0e26b6671df4ef8585da38e675b15745f (patch)
tree25479e0ef005a10efc9b74fe3aa072356009cf1d
parent091b22cb123c437324bd64c5b7d9d2596da4264c (diff)
downloademacs-a8e72eb0e26b6671df4ef8585da38e675b15745f.tar.gz
emacs-a8e72eb0e26b6671df4ef8585da38e675b15745f.zip
; * etc/NEWS: Fix file name quotations.
-rw-r--r--etc/NEWS8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 962cfe58d10..722b0da696b 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -20,19 +20,19 @@ with a prefix argument or by typing 'C-u C-h C-n'.
20 20
21** To install the Emacs binary in a non-standard directory, use '--bindir='. 21** To install the Emacs binary in a non-standard directory, use '--bindir='.
22If you install Emacs in a way that places the Emacs executable file in 22If you install Emacs in a way that places the Emacs executable file in
23a directory other than ${prefix}/bin, you will now need to specify 23a directory other than "${prefix}/bin", you will now need to specify
24that at configure time, if you build Emacs with native-compilation 24that at configure time, if you build Emacs with native-compilation
25support. To this end, add the '--bindir=DIRECTORY' switch to the 25support. To this end, add the '--bindir=DIRECTORY' switch to the
26command line of the 'configure' script, where DIRECTORY is the 26command line of the 'configure' script, where DIRECTORY is the
27directory in which you will install the executable file 'emacs'. This 27directory in which you will install the executable file "emacs". This
28is required even if you place a symlink under ${prefix}/bin that 28is required even if you place a symlink under "${prefix}/bin" that
29points to the real executable file in some other DIRECTORY. 29points to the real executable file in some other DIRECTORY.
30 30
31It is no longer enough to specify 'bindir=DIRECTORY' on the command 31It is no longer enough to specify 'bindir=DIRECTORY' on the command
32line of the "make install" command. 32line of the "make install" command.
33 33
34The reason for this new requirement is that Emacs needs to locate at 34The reason for this new requirement is that Emacs needs to locate at
35startup the directory with its '*.eln' natively-compiled files for the 35startup the directory with its "*.eln" natively-compiled files for the
36preloaded Lisp packages, and the relative name of that directory needs 36preloaded Lisp packages, and the relative name of that directory needs
37therefore to be recorded in the executable as part of the build. 37therefore to be recorded in the executable as part of the build.
38 38