From 8313c072aee6a023eb218cd7b213da7c4ae4858b Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Tue, 3 May 2011 18:19:42 -0400 Subject: [PATCH] Work around potential module caching problem. --- collects/meta/build/build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/collects/meta/build/build b/collects/meta/build/build index adae3a0f7d..51aea15af8 100755 --- a/collects/meta/build/build +++ b/collects/meta/build/build @@ -1353,7 +1353,9 @@ win_build_step() { # inputs: type, name, [args...] ;; ( "VSNET3M" ) _cd "$PLTHOME/src/worksp/$bname" _run "$VSNET" "$bname.sln" /build "Release|$arch" - _run "$PLTHOME/Racket.exe" "xform.rkt" "$@" + # `-c' shouldn't be needed, but there's some problem that is + # probably due to module caching, so work around it for now. + _run "$PLTHOME/Racket.exe" -c "xform.rkt" "$@" _run "$VSNET" "$bname.sln" /build "3m|$arch" ;; ( * ) exit_error "Unknown type for win_build_step: \"$btype\"" ;;