summaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/emacs-build5
1 files changed, 3 insertions, 2 deletions
diff --git a/.local/bin/emacs-build b/.local/bin/emacs-build
index c244934..4fd2b2e 100755
--- a/.local/bin/emacs-build
+++ b/.local/bin/emacs-build
@@ -2,8 +2,8 @@
set -eux
-src=${EMACS_SRC:-.}
-build=${EMACS_BUILD:-.}
+src=$(realpath "${EMACS_SRC:-.}")
+build=$(realpath "${EMACS_BUILD:-.}")
config_h=${build}/src/config.h
make="make -j$(nproc --all)"
@@ -35,6 +35,7 @@ configure_flags=(
--with-native-compilation=no
--with-sqlite3
--with-xinput2
+ ${CONFIGURE_EXTRA_FLAGS:-}
)
is-rolling-distro ()