diff options
Diffstat (limited to 'early-init.el')
-rwxr-xr-x | early-init.el | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/early-init.el b/early-init.el deleted file mode 100755 index d2b1dee..0000000 --- a/early-init.el +++ /dev/null @@ -1,11 +0,0 @@ -;; Adds lib folders to env vars -;; Solves Magit compilation problem on arch guix emacs -;; (defun my-append-env-var (var-name value) -;; "Append VALUE to the beginning of current value of env variable VAR-NAME." -;; (setenv var-name (if (getenv var-name) -;; (format "%s:%s" value (getenv var-name)) -;; value))) - -;; (let ((gccjitpath "/usr/lib/gcc/x86_64-pc-linux-gnu:/usr/lib:/home/peronio/.local/bin")) -;; (mapc (lambda (var-name) (my-append-env-var var-name gccjitpath)) -;; '("LIBRARY_PATH" "LD_LIBRARY_PATH" "PATH"))) |