From owner-freebsd-current@FreeBSD.ORG Sun May 28 16:20:11 2006 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55CC716A957 for ; Sun, 28 May 2006 16:20:11 +0000 (UTC) (envelope-from se@freebsd.org) Received: from mail.atsec.com (mail.atsec.com [195.30.252.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7930743D55 for ; Sun, 28 May 2006 16:20:10 +0000 (GMT) (envelope-from se@freebsd.org) Received: (qmail 1334 invoked by uid 10125); 28 May 2006 16:20:07 -0000 X-SpaceNet-Virusscan: Sophos Version: 4.05; Last IDE Update: 2006-05-28 15:41 no information about results Received: from p5087812e.dip0.t-ipconnect.de (HELO ?192.168.0.12?) (80.135.129.46) by mail.atsec.com with SMTP; 28 May 2006 16:20:07 -0000 X-SpaceNet-Authentification: SMTP AUTH verified Message-ID: <4479CDAB.7030406@FreeBSD.org> Date: Sun, 28 May 2006 18:19:55 +0200 From: Stefan Esser User-Agent: Thunderbird 1.5.0.2 (Windows/20060308) MIME-Version: 1.0 To: Steve Kargl References: <20060527024407.GA2525@troutmask.apl.washington.edu> <447809E6.60002@samsco.org> <20060527162407.GD7307@troutmask.apl.washington.edu> <20060527220501.GB14039@odin.ac.hmc.edu> <20060527220928.GA10094@troutmask.apl.washington.edu> In-Reply-To: <20060527220928.GA10094@troutmask.apl.washington.edu> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org Subject: Re: [RFC] Removal of Fortran from the base system X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 May 2006 16:20:11 -0000 Steve Kargl schrieb: > You'll also want to do > > cat > /usr/bin/f77 > #! /bin/sh > /usr/local/bin/gfortran $@ Just nit-picking ... shouldn't that be: #! /bin/sh /usr/local/bin/gfortran "$@" (The double quotes around $@ used to be essential for the handling of arguments contining blanks and I doubt that this changed recently ;-) Regards, STefan