build-system/gnu: Remove 'install-license-files' from '%dist-phases'.

* guix/build/gnu-dist.scm (%dist-phases): Delete 'install-license-files'.
This commit is contained in:
Ludovic Courtès 2023-03-09 12:35:49 +01:00
parent 4f4e4abd3a
commit 79ae719ad1
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013, 2015, 2020 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2013, 2015, 2020, 2023 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2018 Mark H Weaver <mhw@netris.org>
;;;
;;; This file is part of GNU Guix.
@ -52,6 +52,7 @@
(delete 'strip)
(replace 'install install-dist)
(add-after 'build 'build-dist build)
(delete 'build)))
(delete 'build)
(delete 'install-license-files))) ;don't create 'OUT/share/doc'
;;; gnu-dist.scm ends here