1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/devel/automake110/files/patch-ac
Steve Price 257b4b3851 Fix a typo. This will be in the next release of automake as it is already
in their CVS repository.

PR:		18069
Submitted by:	Joe Jih-Shien Lu <JoeLu@joelu.m8.ntu.edu.tw>
2000-04-29 23:39:16 +00:00

21 lines
804 B
Plaintext

--- automake.in Fri Jan 15 14:42:36 1999
+++ automake.in Tue Apr 18 09:10:36 2000
@@ -2367,7 +2367,7 @@
$output_rules .= "\t d=\$(srcdir); \\\n";
}
$output_rules .= ("\t if test -d \$\$d/\$\$file; then \\\n"
- . "\t cp -pr \$\$/\$\$file \$(distdir)/\$\$file; \\\n"
+ . "\t cp -pr \$\$d/\$\$file \$(distdir)/\$\$file; \\\n"
. "\t else \\\n"
. "\t test -f \$(distdir)/\$\$file \\\n"
. "\t || ln \$\$d/\$\$file \$(distdir)/\$\$file 2> /dev/null \\\n"
@@ -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";