avoid stderr output for cs build
This commit is contained in:
parent
1cbc331532
commit
c628414d6c
4
Makefile
4
Makefile
|
@ -258,7 +258,7 @@ DEFAULT_SCHEME_SRC = racket/src/build/ChezScheme
|
||||||
MAKE_BUILD_SCHEME = y
|
MAKE_BUILD_SCHEME = y
|
||||||
|
|
||||||
CHEZ_SCHEME_REPO = https://github.com/mflatt/ChezScheme
|
CHEZ_SCHEME_REPO = https://github.com/mflatt/ChezScheme
|
||||||
GIT_CLONE_ARGS_qq = --depth 1
|
GIT_CLONE_ARGS_qq = -q --depth 1
|
||||||
|
|
||||||
# Altenative source for Chez Scheme repo, normally set by
|
# Altenative source for Chez Scheme repo, normally set by
|
||||||
# the distro-build client driver
|
# the distro-build client driver
|
||||||
|
@ -361,7 +361,7 @@ racket/src/build/ChezScheme:
|
||||||
else $(MAKE) clone-ChezScheme-as-extra GIT_CLONE_ARGS_qq="" ; fi
|
else $(MAKE) clone-ChezScheme-as-extra GIT_CLONE_ARGS_qq="" ; fi
|
||||||
|
|
||||||
update-ChezScheme:
|
update-ChezScheme:
|
||||||
cd racket/src/build/ChezScheme && git pull && git submodule update
|
cd racket/src/build/ChezScheme && git pull -q && git submodule -q update
|
||||||
|
|
||||||
clone-ChezScheme-as-extra:
|
clone-ChezScheme-as-extra:
|
||||||
cd racket/src/build && git clone $(GIT_CLONE_ARGS_qq) $(EXTRA_REPOS_BASE)ChezScheme/.git
|
cd racket/src/build && git clone $(GIT_CLONE_ARGS_qq) $(EXTRA_REPOS_BASE)ChezScheme/.git
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
(provide log-status
|
(provide log-status
|
||||||
lines)
|
lines)
|
||||||
|
|
||||||
(define stderr (current-error-port))
|
(define stdout (current-output-port))
|
||||||
|
|
||||||
(define (log-status fmt . args)
|
(define (log-status fmt . args)
|
||||||
(apply fprintf stderr (string-append fmt "\n") args))
|
(apply fprintf stdout (string-append fmt "\n") args))
|
||||||
|
|
||||||
(define (lines prefix vals)
|
(define (lines prefix vals)
|
||||||
(apply
|
(apply
|
||||||
|
|
Loading…
Reference in New Issue
Block a user