diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-01-26 23:56:58 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-01-26 23:56:58 +0100 |
commit | 36c452309ff48e7486246221085264b2111cd25b (patch) | |
tree | b3b803be4a8b7f7439ab35d73899df0d14dc29b5 /Makefile.am | |
parent | f8bcf997d507854701ae4adad223c33f58564492 (diff) | |
download | patches-36c452309ff48e7486246221085264b2111cd25b.tar patches-36c452309ff48e7486246221085264b2111cd25b.tar.gz |
build: Unset 'GUIX_PACKAGE_PATH' in 'sync-descriptions'.
* Makefile.am (sync-descriptions): Clear 'GUIX_PACKAGE_PATH'.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 4d0ef25a19..a17b839917 100644 --- a/Makefile.am +++ b/Makefile.am @@ -331,7 +331,8 @@ 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 guix lint --checkers=gnu-description + -GUIX_PACKAGE_PATH= \ + $(top_builddir)/pre-inst-env guix lint --checkers=gnu-description gen-ChangeLog: if test -d .git; then \ |