diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2016-07-13 18:34:08 +0200 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2016-07-14 17:44:23 +0200 |
commit | 3efe57e0ca5b805cf74cf1efdcbb93e10d72a7e1 (patch) | |
tree | b83d35d2bffa3f839ce28f05e1a505639b664f0a | |
parent | 2ea7029a3129563063db3ab197b5aecd8faa7f51 (diff) | |
download | cuirass-3efe57e0ca5b805cf74cf1efdcbb93e10d72a7e1.tar cuirass-3efe57e0ca5b805cf74cf1efdcbb93e10d72a7e1.tar.gz |
cuirass: Fix 'show-help'.
-rw-r--r-- | bin/cuirass.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/cuirass.in b/bin/cuirass.in index e38449a..180ecd3 100644 --- a/bin/cuirass.in +++ b/bin/cuirass.in @@ -31,8 +31,8 @@ exec ${GUILE:-@GUILE@} --no-auto-compile -e main -s "$0" "$@" (ice-9 getopt-long) (ice-9 popen)) -(define* (show-help) - (simple-format #t "Usage: ~a [OPTIONS] SPECFILE~%" (%program-name)) +(define (show-help) + (format #t "Usage: ~a [OPTIONS] SPECFILE~%" (%program-name)) (display "Run build jobs from SPECFILE. --one-shot Evaluate and build jobs only once |