Index: trunk/ippScripts/scripts/warp_overlap.pl
===================================================================
--- trunk/ippScripts/scripts/warp_overlap.pl	(revision 14569)
+++ trunk/ippScripts/scripts/warp_overlap.pl	(revision 14571)
@@ -125,5 +125,5 @@
 	    my $astromFile = $ipprc->filename($astromSource, $camRoot); # Astrometry file
 	    
-	    my @matchlist = get_overlaps($astromFile, $tess_dir); # List of overlaps
+	    my @matchlist = get_overlaps($astromFile, $tess_dir, 0); # List of overlaps
 	    
 	    # Match each of the imfiles to this list
@@ -135,5 +135,5 @@
 	    foreach my $imfile (@$imfiles) {
 		my $astromFile = $imfile->{chip_uri}; # Astrometry file
-		my @matchlist = get_overlaps($astromFile, $tess_dir); # List of overlaps
+		my @matchlist = get_overlaps($astromFile, $tess_dir, 1); # List of overlaps
 		extract_overlaps(\@matchlist, $imfile, $astromFile, $tess_id, \@overlaps, \%unique_skycells);
 	    }
@@ -217,6 +217,8 @@
     my $filename = shift;	# Filename on which to run dvoImageOverlaps
     my $tess_dir = shift;	# Tessellation directory
+    my $flag = shift;		# Do we use the -accept-astrom flag?
 
     my $command = "$dvoImageOverlaps -D CATDIR $tess_dir " . $ipprc->file_resolve($filename);
+    $command .= ' -accept-astrom' if $flag;
     my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
 	run(command => $command, verbose => 1);
