mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: commencement: bash-mesboot0: Break store file-name in comment.
Fixes <https://bugs.gnu.org/43005>. Reported by Vagrant Cascadian <vagrant@debian.org>. * gnu/packages/commencement.scm (bash-mesboot0)[arguments]: Break store file name in comment and add unquoted string-append to silence the ’assert-no-store-file-names’ check. The store file name check is really meant for code; this file name was unfortunately used is a comment.
This commit is contained in:
parent
9e7b2658d9
commit
b85863f7ce
1 changed files with 6 additions and 3 deletions
|
@ -788,14 +788,17 @@ $MES -e '(mescc)' module/mescc.scm -- \"$@\"
|
|||
(substitute* "config.h"
|
||||
(("#define GETCWD_BROKEN 1") "#undef GETCWD_BROKEN"))
|
||||
(let ((config.h (open-file "config.h" "a")))
|
||||
(display (string-append "
|
||||
(display (string-append
|
||||
;; XXX TODO: remove nested ,(string-append ...) and
|
||||
;; store file name on next rebuild cycle
|
||||
,(string-append "
|
||||
// tcc: error: undefined symbol 'enable_hostname_completion'
|
||||
#define enable_hostname_completion(on_or_off) 0
|
||||
|
||||
// /gnu/store/cq0cmv35s9dhilx14zaghlc08gpc0hwr-tcc-boot0-0.9.26-6.c004e9a/lib/libc.a: error: 'sigprocmask' defined twice
|
||||
// /gnu/store/" "cq0cmv35s9dhilx14zaghlc08gpc0hwr-tcc-boot0-0.9.26-6.c004e9a/lib/libc.a: error: 'sigprocmask' defined twice
|
||||
#define HAVE_POSIX_SIGNALS 1
|
||||
#define endpwent(x) 0
|
||||
")
|
||||
"))
|
||||
config.h)
|
||||
(close config.h))
|
||||
#t))
|
||||
|
|
Loading…
Reference in a new issue