From owner-freebsd-ports Sun Oct 31 9:24:56 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp05.wxs.nl (smtp05.wxs.nl [195.121.6.57]) by hub.freebsd.org (Postfix) with ESMTP id 9DBF914C58 for ; Sun, 31 Oct 1999 09:24:49 -0800 (PST) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.198.115]) by smtp05.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAA54E7; Sun, 31 Oct 1999 18:24:44 +0100 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id SAA73692; Sun, 31 Oct 1999 18:24:29 +0100 (CET) (envelope-from asmodai) Date: Sun, 31 Oct 1999 18:24:29 +0100 From: Jeroen Ruigrok/Asmodai To: fujimoto@oscar.elec.waseda.ac.jp Cc: ports@freebsd.org Subject: automake 1.4 Message-ID: <19991031182429.N64452@daemon.ninth-circle.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="8nsIa27JVQLqB7/C" X-Mailer: Mutt 1.0pre3i Organisation: Ninth-Circle Enterprises Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --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 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