build: Move Hydra recipe to build-aux/hydra.
* hydra.scm: Rename to... * build-aux/hydra/gnu-system.scm: ... this. * Makefile.am (EXTRA_DIST): Adjust accordingly.
This commit is contained in:
parent
fe1818e26a
commit
f3211ef386
|
@ -127,7 +127,7 @@ EXTRA_DIST = \
|
||||||
ROADMAP \
|
ROADMAP \
|
||||||
TODO \
|
TODO \
|
||||||
.dir-locals.el \
|
.dir-locals.el \
|
||||||
hydra.scm \
|
build-aux/hydra/gnu-system.scm \
|
||||||
build-aux/download.scm \
|
build-aux/download.scm \
|
||||||
build-aux/sync-synopses.scm \
|
build-aux/sync-synopses.scm \
|
||||||
srfi/srfi-64.scm \
|
srfi/srfi-64.scm \
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
(and=> (assoc-ref (current-source-location) 'filename)
|
(and=> (assoc-ref (current-source-location) 'filename)
|
||||||
(lambda (file)
|
(lambda (file)
|
||||||
(let ((dir (dirname file)))
|
(let ((dir (string-append (dirname file) "/../..")))
|
||||||
(format (current-error-port) "prepending ~s to the load path~%"
|
(format (current-error-port) "prepending ~s to the load path~%"
|
||||||
dir)
|
dir)
|
||||||
(set! %load-path (cons dir %load-path))))))
|
(set! %load-path (cons dir %load-path))))))
|
Loading…
Reference in New Issue