diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2015-11-10 15:53:11 +0100 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-11-10 21:47:24 -0500 |
commit | 553e8bcec0f14104b07ff84f4be14f1556f9259c (patch) | |
tree | e4d6bd67599b8c8865a520d609432688d77ae09b | |
parent | 65cced1ddad32fdeedebd985c8d66ba155bd146f (diff) |
build: Fix all the Guix development package references.
* Makefile.am (EXTRA_DIST): Use 'guix.scm' instead of the obsolete file
name 'package.scm'.
* example/posts/baz.skr: Likewise.
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | example/posts/baz.skr | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index c47c84a..e607551 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,6 @@ ## Haunt --- Static site generator for GNU Guile ## Copyright © 2015 David Thompson <davet@gnu.org> +## Copyright © 2015 Mathieu Lirzin <mthl@gnu.org> ## ## This file is part of Haunt. ## @@ -83,7 +84,7 @@ info_TEXINFOS = doc/haunt.texi EXTRA_DIST += \ pre-inst-env.in \ README.md \ - package.scm + guix.scm SUBDIRS = \ example \ diff --git a/example/posts/baz.skr b/example/posts/baz.skr index abfb51a..747ca78 100644 --- a/example/posts/baz.skr +++ b/example/posts/baz.skr @@ -20,7 +20,7 @@ (p [And here's a code snippet of how I build Haunt using GNU Guix:]) (source-code - "guix environment -l package.scm + "guix environment -l guix.scm ./configure make") |