From owner-freebsd-ports@FreeBSD.ORG Sat Feb 25 12:17:14 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30F7A16A420; Sat, 25 Feb 2006 12:17:14 +0000 (GMT) (envelope-from ygrex@unlit.org) Received: from unlit.org (unlit.org [82.146.41.144]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90C6143D45; Sat, 25 Feb 2006 12:17:13 +0000 (GMT) (envelope-from ygrex@unlit.org) Received: from ygrex (stud5-gw.etelecom.ru [83.243.70.252]) (authenticated bits=0) by unlit.org (8.13.5/8.13.1) with ESMTP id k1PCH91K091462 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO); Sat, 25 Feb 2006 15:17:10 +0300 (MSK) (envelope-from ygrex@unlit.org) Received: from ygrex by ygrex with local (Exim 4.54) id 1FCyQd-00008G-SU; Sat, 25 Feb 2006 15:21:40 +0300 To: obrien@FreeBSD.org From: y@unlit.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit User-Agent: w3m/0.5.1 w3mmail.cgi/1.13 Message-Id: Date: Sat, 25 Feb 2006 15:21:39 +0300 Cc: ports@FreeBSD.org Subject: FreeBSD Port: bash-3.1.10 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Feb 2006 12:17:14 -0000 Hello, I have this bash: $ bash --version GNU bash, version 3.1.10(0)-release (i386-portbld-freebsd4.11) Copyright (C) 2005 Free Software Foundation, Inc. This is from manpage: for name [ in word ] ; do list ; done .... ..................................... If the in word is omit- ted, the for command executes list once for each positional parameter that is set (see PARAMETERS below). ................. .... The case, when [ in word ] is absent does not work. a simple script 'test': #!/usr/local/bin/bash for i do echo $i done With couple parameters should list all these parameters each on its dictinct line. That is: $ ./test 1 2 3 1 2 3 But in this very bash the test produces a blank line only. It is highly provoking, for libtool cannot work because of it! Best regards, Igor