mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
profiles: Add comment at the top of 'manifest' file.
* guix/build/profiles.scm (build-profile): Add comment at the top of MANIFEST-FILE.
This commit is contained in:
parent
c941b3128b
commit
94642ab06b
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2015, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2015, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -167,6 +167,10 @@ (define manifest-file
|
|||
;; Store meta-data.
|
||||
(call-with-output-file manifest-file
|
||||
(lambda (p)
|
||||
(display "\
|
||||
;; This file was automatically generated and is for internal use only.
|
||||
;; It cannot be passed to the '--manifest' option.\n\n"
|
||||
p)
|
||||
(pretty-print manifest p)))
|
||||
|
||||
;; Make sure we can write to 'OUTPUT/etc'. 'union-build' above could have
|
||||
|
|
Loading…
Reference in a new issue