memory-leaks

Still reachable: lots of words in many pages.
git clone https://git.kevinlegouguec.net/memory-leaks
Log | Files | Refs | README | LICENSE

commit 18c641c763c000b972817e84e450a60971a4f954
parent 05ed802db647826bd8cec9a0cda4c134806e75e2
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Fri, 17 May 2019 19:44:24 +0200

Update Emacs build script

Diffstat:
MREADME.md | 2+-
Mpersonal/setup/emacs.md | 7++++---
2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md @@ -1,5 +1,5 @@ # Peniblec's Memory Leaks -## still reachable: 8113 words in 18 pages +## still reachable: 8114 words in 18 pages Hi! I am a software engineer interested in [a bunch of things]. diff --git a/personal/setup/emacs.md b/personal/setup/emacs.md @@ -9,15 +9,16 @@ repository, and a repository where compilation has already happened: set -eux MAKE="make -j$(nproc --all)" +CONFIGURE_FLAGS="--with-xwidgets" if ! test -f Makefile then ${MAKE} configure - ./configure --with-xwidgets + ./configure ${CONFIGURE_FLAGS} fi -if ! ${MAKE} CONFIGURE_FLAGS=--with-xwidgets +if ! ${MAKE} CONFIGURE_FLAGS="${CONFIGURE_FLAGS}" then - ${MAKE} CONFIGURE_FLAGS=--with-xwidgets bootstrap + ${MAKE} CONFIGURE_FLAGS="${CONFIGURE_FLAGS}" bootstrap fi ```