Ignore:
Timestamp:
09/10/2007 00:25:36 (5 years ago)
Author:
chris
Message:

Die if infrastructure/makebuildenv.pl or infrastructure/makeparcels.pl fails
during configure.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/trunk/configure.ac

    r1771 r1866  
    282282# Configure the Box build system 
    283283echo 
    284 $PERL ./infrastructure/makebuildenv.pl && 
    285   $PERL ./infrastructure/makeparcels.pl 
     284if ! $PERL ./infrastructure/makebuildenv.pl \ 
     285|| ! $PERL ./infrastructure/makeparcels.pl; then 
     286        echo "Making infrastructure failed!" 
     287        exit 1 
     288fi 
    286289 
    287290# Write summary of important info 
Note: See TracChangeset for help on using the changeset viewer.