freebsd-ports/graphics/cthumb/files/patch-cthumb.in
Patrick Li 8949362893 Update to 4.1
PR:		36164
Submitted by:	maintainer
2002-03-24 04:49:14 +00:00

22 lines
788 B
Text

--- cthumb.in.orig Sat Dec 15 18:00:19 2001
+++ cthumb.in Sat Mar 23 23:42:12 2002
@@ -454,6 +454,7 @@
if ($CheckThumbnails) {
eval "require Image::Size";
if (defined $Image::Size::VERSION) {
+ $Image::Size::VERSION = $Image::Size::VERSION;
$HaveImageSizePerlModule=1;
}
}
@@ -557,7 +558,10 @@
if ($NoMainIndex) {
unlink($indextmp);
} else {
- if (system ("diff -q $indextmp $MainIndexName &> /dev/null")) {
+ local $ENV{SHELL}='/bin/sh';
+ system ("diff -q $indextmp $MainIndexName 2>/dev/null");
+ my $difret = $? >> 8;
+ if ($difret != 0) {
print "Index for $descfname in: $MainIndexName\n";
my $cmd = "mv $indextmp $MainIndexName";
if (system($cmd)) { print "cthumb warning: command '$cmd' failed: $!\n"; }