From 68fee973deef0c4e0d66002d012c10a7723662cf Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 10 May 2010 06:27:57 -0600 Subject: [PATCH] have 'raco make' require an argument so that it doesn't silently do nothing when no files are supplied --- collects/compiler/commands/make.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/compiler/commands/make.rkt b/collects/compiler/commands/make.rkt index 20b8ea9c5f..57ae63c1c4 100644 --- a/collects/compiler/commands/make.rkt +++ b/collects/compiler/commands/make.rkt @@ -30,7 +30,7 @@ [("--vv") "Very verbose mode" (verbose #t) (very-verbose #t)] - #:args file file)) + #:args (file . another-file) (cons file another-file))) (if (disable-deps) ;; Just compile one file: