summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--config.org13
1 files changed, 13 insertions, 0 deletions
diff --git a/config.org b/config.org
index d93d2e3..8d36390 100644
--- a/config.org
+++ b/config.org
@@ -17,6 +17,19 @@ I have consulted [[https://raw.githubusercontent.com/rasendubi/dotfiles/master/R
 
 For this initial test, my configuration fails on both counts.  All i've done is put every section of elisp into a code block and turned the comments into normal org text.  Over time, i hope to expand it into something which ticks both of those boxes.
 
+* Emacs installation
+#+begin_src sh :tangle no
+  BUILD_OPTS=$(emacs \
+		   --batch \
+		   --eval "(prin1 system-configuration-options)")
+
+  ./autogen.sh
+  echo "$BUILD_OPTS" | sed 's/^"\(.*\)"$/\1/' \
+      | xargs ./configure
+  make bootstrap
+  sudo make install
+#+end_src
+
 * Configuration
 
 #+begin_src elisp