Date: Thu, 14 Sep 2000 01:16:15 +0900 From: "Akinori -Aki- MUSHA" <knu@idaemons.org> To: Will Andrews <will@FreeBSD.org> Cc: Maxim Sobolev <sobomax@FreeBSD.org>, Yukihiro Nakai <nakai@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/mail/sonicmail - Imported sources Message-ID: <8666o0b73k.wl@archon.local.idaemons.org> In-Reply-To: In your message of "Wed, 13 Sep 2000 18:00:01 %2B0300" <39BF9671.24BD85AB@FreeBSD.org> References: <200009131456.HAA66530@freefall.freebsd.org> <39BF9671.24BD85AB@FreeBSD.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Will, please (ask the person in charge to) apply the following patch to freefall:/usr/local/bin/modulesupdate, to stop whitespace bloat in CVSROOT/modules. I've once told you about this, however it doesn't seem fixed yet.. --- modulesupdate.orig Fri Aug 18 17:45:24 2000 +++ modulesupdate Thu Sep 14 01:11:02 2000 @@ -93,7 +93,8 @@ print "Inserting new module...\n"; open(ED, "|ed modules/modules") || die "Cannot start ed\n"; -print ED "$cmd$modulename " . ' ' x (15 - length($modulename)) . +$len = length($modulename); +print ED "$cmd$modulename" . "\t" x ($len < 8 ? 2 : 1) . "$modulepath\n.\nw\nq\n"; close(ED); -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?8666o0b73k.wl>