changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: emacs bash var fixes

changeset 98: 5d6ed5550732
parent 97: 2b0ba9e3592a
child 99: bae8eb2ffc12
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 14 Jan 2024 17:30:35 -0500
files: scripts/build-emacs.sh scripts/get-emacs.sh
description: emacs bash var fixes
     1.1--- a/scripts/build-emacs.sh	Sat Jan 13 23:19:44 2024 -0500
     1.2+++ b/scripts/build-emacs.sh	Sun Jan 14 17:30:35 2024 -0500
     1.3@@ -1,6 +1,6 @@
     1.4 #!/usr/bin/env bash
     1.5 CPUS=$(getconf _NPROCESSORS_ONLN)
     1.6-TARGETDIR=${1:-./build/src/emacs}
     1.7+TARGETDIR="${1:-build/src/emacs}"
     1.8 CONFIG=(--with-mailutils
     1.9 	--with-imagemagick
    1.10 	--with-x-toolkit=gtk
     2.1--- a/scripts/get-emacs.sh	Sat Jan 13 23:19:44 2024 -0500
     2.2+++ b/scripts/get-emacs.sh	Sun Jan 14 17:30:35 2024 -0500
     2.3@@ -1,4 +1,4 @@
     2.4 #!/usr/bin/env bash
     2.5 # get Emacs source code
     2.6-TARGETDIR=${1:-build/src/emacs}
     2.7+TARGETDIR="${1:-build/src/emacs}"
     2.8 git clone https://vc.compiler.company/packy/shed/vendor/emacs.git $TARGETDIR