[svn:parrot] r43185 - trunk/tools/dev

bubaflub at svn.parrot.org bubaflub at svn.parrot.org
Mon Dec 21 19:15:17 UTC 2009


Author: bubaflub
Date: Mon Dec 21 19:15:15 2009
New Revision: 43185
URL: https://trac.parrot.org/parrot/changeset/43185

Log:
make sure Makefile exists before trying to open it

Modified:
   trunk/tools/dev/checkdepend.pl

Modified: trunk/tools/dev/checkdepend.pl
==============================================================================
--- trunk/tools/dev/checkdepend.pl	Mon Dec 21 19:00:41 2009	(r43184)
+++ trunk/tools/dev/checkdepend.pl	Mon Dec 21 19:15:15 2009	(r43185)
@@ -44,6 +44,7 @@
 
 plan('no_plan');
 
+die 'no Makefile.  run `perl Configure.pl` to generate one.' unless -e "Makefile";
 open my $mf, '<', "Makefile";
 my $rules;
 {


More information about the parrot-commits mailing list