From 370678abf651fd5abc9061ae72d4838dee4f8945 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Wed, 14 Sep 2011 17:57:19 -0400 Subject: [PATCH] Avoid compiling wxme test files. Since that requires `racket/draw', which requires libcairo, which is missing on some build machines. It might be needed in the future, but for now it's better to make it easier to add build machines. --- collects/tests/drracket/snip/info.rkt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/collects/tests/drracket/snip/info.rkt b/collects/tests/drracket/snip/info.rkt index 7069c5a52c..65f59c5415 100644 --- a/collects/tests/drracket/snip/info.rkt +++ b/collects/tests/drracket/snip/info.rkt @@ -1,6 +1,5 @@ #lang setup/infotab -(define compile-omit-paths - (list "collapsed.rkt" - "2htdpimage.rkt" - "image.rkt")) +;; compiling the wxme files requires `racket/draw' which fails on build +;; machines without libcairo. So avoid compiling them. +(define compile-omit-paths 'all)