freebsd-ports/devel/automake16/files/patch-ac
Steve Price 80f3b33174 Fix a problem when using the --copying function. Perl's system() call
returns a zero on success and non-zero on failure.

Submitted by:	Jeroen Ruigrok/Asmodai <asmodai@wxs.nl>
1999-11-24 22:12:56 +00:00

12 lines
375 B
Plaintext

--- automake.in.orig Wed Nov 24 16:04:56 1999
+++ automake.in Wed Nov 24 16:07:15 1999
@@ -6907,7 +6907,7 @@
$trailer = "; error while making link: $!\n";
}
}
- elsif (! system ('cp', $am_dir . '/' . $file, $errfile))
+ elsif (system ('cp', $am_dir . '/' . $file, $errfile))
{
$suppress = 0;
$trailer = "\n error while copying\n";