Move make step in EXPERIMENTAL.org file

This commit is contained in:
syl20bnr 2018-05-22 23:19:38 -04:00
parent 7be4e22d45
commit bdbc0afe2c
1 changed files with 3 additions and 2 deletions

View File

@ -57,6 +57,7 @@ In the root directory of your freshly cloned Emacs repository and with the
#+BEGIN_SRC shell
./autogen.sh
./configure --with-ns --with-dbus --with-gnutls --with-imagemagick --with-rsvg --with-mailutils --with-xml2 --with-modules
make
#+END_SRC
**** Ubuntu
@ -70,6 +71,7 @@ In the root directory of your freshly cloned Emacs repository and with the
# Pick one. The first one will install Emacs locally and the second one will install it globally.
./configure --with-dbus --with-gnutls --with-imagemagick --with-rsvg --with-mailutils --with-xml2 --with-modules --prefix="$HOME/.local"
./configure --with-dbus --with-gnutls --with-imagemagick --with-rsvg --with-mailutils --with-xml2 --with-modules
make
#+END_SRC
If you have never compile Emacs from source on your machine then you probably
@ -81,10 +83,9 @@ need to install the following packages:
#+END_SRC
*** Install Emacs
After the compiling finished successfully, you will need to install Emacs.
After the compiliation finished successfully, you may need to install Emacs.
#+BEGIN_SRC shell
make
make install # if you configure Emacs to install locally
sudo make install # if globally
#+END_SRC