From owner-cvs-src@FreeBSD.ORG Tue Jun 3 11:59:10 2008 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9FA51065672 for ; Tue, 3 Jun 2008 11:59:10 +0000 (UTC) (envelope-from joerg@britannica.bec.de) Received: from www.pkgsrc-box.org (www.ostsee-abc.de [62.206.222.50]) by mx1.freebsd.org (Postfix) with ESMTP id A9FB88FC1F for ; Tue, 3 Jun 2008 11:59:10 +0000 (UTC) (envelope-from joerg@britannica.bec.de) Received: from britannica.bec.de (www.pkgsrc-box.org [127.0.0.1]) by www.pkgsrc-box.org (Postfix) with ESMTP id CCB81E506A7 for ; Tue, 3 Jun 2008 11:59:09 +0000 (UTC) Received: by britannica.bec.de (Postfix, from userid 1000) id 9DE1E16FBC; Tue, 3 Jun 2008 13:59:09 +0200 (CEST) Date: Tue, 3 Jun 2008 13:59:09 +0200 From: Joerg Sonnenberger To: cvs-src@freebsd.org Message-ID: <20080603115909.GB1707@britannica.bec.de> References: <200805151955.m4FJtRMb099378@repoman.freebsd.org> <200806021445.15974.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200806021445.15974.jhb@freebsd.org> User-Agent: Mutt/1.5.17 (2007-11-01) Subject: Re: cvs commit: src/bin/sh expand.c parser.c parser.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jun 2008 11:59:11 -0000 On Mon, Jun 02, 2008 at 02:45:15PM -0400, John Baldwin wrote: > Specifically note the "==" passed to test(1). POSIX says this should be "=", > and that's all our test(1) implements. The bash manpage for the builtin-test > command says: > > string1 == string2 > True if the strings are equal. = may be used in place of == for > strict POSIX compliance. What is even more annoying about this is that it is a BASHism, not a GNUism. The test from coreutils doesn't understand == either. Joerg