Date: Sun, 31 Oct 1999 18:24:29 +0100 From: Jeroen Ruigrok/Asmodai <asmodai@wxs.nl> To: fujimoto@oscar.elec.waseda.ac.jp Cc: ports@freebsd.org Subject: automake 1.4 Message-ID: <19991031182429.N64452@daemon.ninth-circle.org>
next in thread | raw e-mail | index | archive | help
--8nsIa27JVQLqB7/C Content-Type: text/plain; charset=us-ascii Hello FUJIMOTO-san, the current port of automake has one small problem, confirmed by the automake maintainers. If one uses automake --add-missing --copy --gnu one gets errors copying. This is not the desired behaviour since it does indeed copy the files. The supported fix is to delete the ! leading the system (`cp part on line 6910 so that it reads: elsif (system ('cp', $am_dir . '/' . $file, $errfile)) instead of elsif (! system ('cp', $am_dir . '/' . $file, $errfile)) If you, or someone of the ports team wants to pick this up and put a patch for this in the patches directory I would be happy. Find the patch attached. Kind regards, -- Jeroen Ruigrok van der Werven/Asmodai asmodai(at)wxs.nl The BSD Programmer's Documentation Project <http://home.wxs.nl/~asmodai> Network/Security Specialist BSD: Technical excellence at its best Practice yourself what you preach. --8nsIa27JVQLqB7/C Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="automake.diff" --- automake.orig Sun Oct 31 18:23:38 1999 +++ automake Sun Oct 31 18:14:29 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"; --8nsIa27JVQLqB7/C-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19991031182429.N64452>