Created
December 3, 2012 02:11
-
-
Save DavidToca/4192179 to your computer and use it in GitHub Desktop.
update - install emacs 24.2 from cli on mac os X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -O http://ftp.gnu.org/gnu/emacs/emacs-24.2.tar.gz // | |
tar -xvzf emacs-24.2.tar.gz | |
cd emacs* | |
./configure -without-x | |
make | |
// see if it works with src/emacs -Q | |
sudo make install | |
// replace cur vers of emacs | |
sudo mv /usr/bin/emacs /usr/bin/emacs.bk | |
sudo cp /usr/local/bin/emacs /usr/bin/emacs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment