On 02/01/2011 01:05 PM, Jon Rafkind wrote:
>> * Jon Rafkind <rafk...@cs.utah.edu>
>>   Release tests for (one of the) linux releases:
>>   - Test that the `racket' and `racket-textual' source releases
>>     compile fine
>>   - Test that the binary installers for both work, try each one in
>>     both normal and unix-style installation modes. (just ubuntu)
>>   [Note: get the release candidates from the URL in this email. Use
>>    the 'static table' link to see a list of all tar files available]
>>
> Using mz-5.0.99.900-src-unix.tgz, configure error'd out
>   config.status: error: cannot find input file: plot/Makefile.in
>
> _________________________________________________
>   For list-related administrative tasks:
>   http://lists.racket-lang.org/listinfo/dev
This patch makes configure ignore plot if plot/Makefile is not found. Ok
to commit?
diff --git a/src/racket/configure.ac b/src/racket/configure.ac
index 861fce6..bc1e4f6 100644
--- a/src/racket/configure.ac
+++ b/src/racket/configure.ac
@@ -1259,7 +1259,7 @@ fi
 makefiles="$makefiles foreign/Makefile"
 ac_configure_args="$ac_configure_args$SUB_CONFIGURE_EXTRAS"
 
-if test "${enable_plot}" = "yes" ; then
+if test "${enable_plot}" = "yes" && test -e plot/Makefile ; then
   makefiles="$makefiles
              plot/Makefile"
   MAKE_PLOT=plot
_________________________________________________
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev

Reply via email to