Ensure the TempExtlib actuall exists
Peter Rabbitson [Thu, 7 Aug 2014 03:05:39 +0000 (05:05 +0200)]
lib/DBIx/Class/_Util.pm

index 35f8ad0..9f984d2 100644 (file)
@@ -29,6 +29,9 @@ BEGIN {
     File::Spec->catdir( (File::Spec->splitpath(__FILE__))[1], '_TempExtlib' )
   ) =~ /^(.*)$/; # screw you, taint mode
 
+  die "TempExtlib $HERE does not seem to exist - perhaps you need to run `perl Makefile.PL` in the DBIC checkout?\n"
+    unless -d $HERE;
+
   unshift @INC, $HERE;
 }