diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-19 22:52:14 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-19 22:52:28 +0100 |
commit | 37627ffa89dc318858c14073e6cf238e1f531b36 (patch) | |
tree | 2d62f9b64251d7ac50de4c91083b3efffaeeaefc /Makefile.am | |
parent | dd3b6d66b9c9bb18d00deff7d4ca011dbfbdf122 (diff) | |
download | patches-37627ffa89dc318858c14073e6cf238e1f531b36.tar patches-37627ffa89dc318858c14073e6cf238e1f531b36.tar.gz |
lint: Fold 'sync-descriptions' script as 'gnu-description' lint checker.
* build-aux/sync-descriptions.scm: Remove. Move payload to...
* guix/scripts/lint.scm: ... here.
(escape-quotes, official-gnu-packages*,
check-gnu-synopsis+description): New procedures.
(%checkers): Add 'gnu-descriptions'.
* Makefile.am (EXTRA_DIST): Remove build-aux/sync-descriptions.scm.
(sync-descriptions): Use 'guix lint'.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 075726d309..ee029c3735 100644 --- a/Makefile.am +++ b/Makefile.am @@ -233,7 +233,6 @@ EXTRA_DIST = \ build-aux/check-final-inputs-self-contained.scm \ build-aux/download.scm \ build-aux/list-packages.scm \ - build-aux/sync-descriptions.scm \ srfi/srfi-37.scm.in \ srfi/srfi-64.scm \ srfi/srfi-64.upstream.scm \ @@ -308,8 +307,7 @@ dist-hook: sync-descriptions gen-ChangeLog assert-no-store-file-names distcheck-hook: assert-binaries-available assert-final-inputs-self-contained sync-descriptions: - -$(top_builddir)/pre-inst-env $(GUILE) \ - $(top_srcdir)/build-aux/sync-descriptions.scm + -$(top_builddir)/pre-inst-env guix lint --checkers=gnu-description gen-ChangeLog: if test -d .git; then \ |