Skip to content

Instantly share code, notes, and snippets.

@DavidToca
Created December 3, 2012 02:11
Show Gist options
  • Save DavidToca/4192179 to your computer and use it in GitHub Desktop.
Save DavidToca/4192179 to your computer and use it in GitHub Desktop.
update - install emacs 24.2 from cli on mac os X
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