# New Ticket Created by  Timothy Bollman 
# Please include the string:  [perl #70768]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=70768 >








It looks to be fairly common throughout the build scripts, but there is no 
system return value check for the command that performs a SVN checkout of 
parrot.  This resulted in multiple cascading failures on my system which took 
more mental effort than absolutely neccessary to determine the point of 
failure.  The issue could be resolved by either checking the return value of 
the system call and aborting if non-zero or checking the $? variable after the 
fact for similar conditions.

An example fix would be:
47: system(qw(svn checkout -r), $regsvn, qw(https://svn.parrot.org/parrot/trunk 
parrot));
48: die "Failed to properly check out rakudo:" if $? != 0;
                                          
_________________________________________________________________
Bing brings you maps, menus, and reviews organized in one place.
http://www.bing.com/search?q=restaurants&form=MFESRP&publ=WLHMTAG&crea=TEXT_MFESRP_Local_MapsMenu_Resturants_1x1

Reply via email to