From 085a286a29743b4434d3d9d28d7fc0ac4ab7410b Mon Sep 17 00:00:00 2001 From: steve Date: Wed, 24 Nov 1999 22:12:56 +0000 Subject: 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 --- devel/automake110/files/patch-ac | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 devel/automake110/files/patch-ac (limited to 'devel/automake110') diff --git a/devel/automake110/files/patch-ac b/devel/automake110/files/patch-ac new file mode 100644 index 0000000..8888fcd --- /dev/null +++ b/devel/automake110/files/patch-ac @@ -0,0 +1,11 @@ +--- 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"; -- cgit v1.1