diff options
author | Carlo Zancanaro <carlo@zancanaro.id.au> | 2021-06-23 15:57:40 +1000 |
---|---|---|
committer | Leo Prikler <leo.prikler@student.tugraz.at> | 2021-06-23 09:08:41 +0200 |
commit | 6b83da96162fe212a4e306b259c2c52f17878ec5 (patch) | |
tree | 42098e66df71ca1eefebd4653c89aba958fa2000 /gnu/packages/erlang.scm | |
parent | 5ab7fbad27c652bb2a7143995970e8b5886a0cb6 (diff) |
gnu: Fix references to emacs-build-system's expand-load-path phase.
* gnu/packages/emacs-xyz.scm (emacs-pdf-tools)[#:phases]: Use
emacs-expand-load-path instead of emacs-add-source-to-load-path.
* gnu/packages/erlang.scm (emacs-erlang)[#:phases]: Use expand-load-path
instead of add-source-to-load-path.
* gnu/packages/protobuf.scm (emacs-protobuf-mode)[#:phases]: Use
expand-load-path instead of add-source-to-load-path.
Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>
Diffstat (limited to 'gnu/packages/erlang.scm')
-rw-r--r-- | gnu/packages/erlang.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm index 7b5dc70b5d..d52d5c3983 100644 --- a/gnu/packages/erlang.scm +++ b/gnu/packages/erlang.scm @@ -232,7 +232,7 @@ built-in support for concurrency, distribution and fault tolerance.") (arguments `(#:phases (modify-phases %standard-phases - (add-before 'add-source-to-load-path 'change-working-directory + (add-before 'expand-load-path 'change-working-directory (lambda _ (chdir "lib/tools/emacs") #t))))) (home-page "https://www.erlang.org/") (synopsis "Erlang major mode for Emacs") |