gnu: guile-stis-parser: Install go files to canonical directory.
* gnu/packages/guile-xyz.scm (guile-stis-parser)[arguments]: Add build phase "use-canonical-directory-for-go-files".
This commit is contained in:
parent
b9445d0b76
commit
8318b3ed8c
|
@ -2081,6 +2081,11 @@ completion, a simple mode line, etc.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'chdir
|
(add-after 'unpack 'chdir
|
||||||
(lambda _ (chdir "modules") #t))
|
(lambda _ (chdir "modules") #t))
|
||||||
|
(add-after 'chdir 'use-canonical-directory-for-go-files
|
||||||
|
(lambda _
|
||||||
|
(substitute* "Makefile.am"
|
||||||
|
(("/ccache") "/site-ccache"))
|
||||||
|
#t))
|
||||||
(add-after 'chdir 'delete-broken-symlink
|
(add-after 'chdir 'delete-broken-symlink
|
||||||
(lambda _
|
(lambda _
|
||||||
(delete-file "parser/stis-parser/lang/.#calc.scm")
|
(delete-file "parser/stis-parser/lang/.#calc.scm")
|
||||||
|
|
Loading…
Reference in New Issue