From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27128 invoked by alias); 26 Nov 2014 13:34:44 -0000 Mailing-List: contact kawa-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: kawa-owner@sourceware.org Received: (qmail 27114 invoked by uid 89); 26 Nov 2014 13:34:43 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: terror.hungry.com Received: from terror.hungry.com (HELO terror.hungry.com) (199.181.107.40) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Wed, 26 Nov 2014 13:34:42 +0000 Received: from [10.0.1.153] ([98.210.163.199]) (AUTH: PLAIN alves, SSL: TLSv1/SSLv3,128bits,AES128-SHA) by terror.hungry.com with ESMTPSA; Wed, 26 Nov 2014 05:34:29 -0800 id 00072746.000000005475D6EA.0000F373 Message-ID: <5475D6E4.1080505@hungry.com> Date: Wed, 26 Nov 2014 13:34:00 -0000 From: Seth Alves User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: kawa@sourceware.org Subject: Re: relative includes in r7rs library definitions References: <546F4449.4050303@hungry.com> <546F85E7.6020404@bothner.com> <546F8AD9.6080404@hungry.com> <54726634.9090105@bothner.com> <547437D7.7060500@bothner.com> <54749C51.9020301@hungry.com> <5474E8F0.7090000@bothner.com> <54752188.8070700@hungry.com> <547581A7.20402@bothner.com> In-Reply-To: <547581A7.20402@bothner.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2014-q4/txt/msg00085.txt.bz2 These both seem to work for me. I'm running on Ubuntu 14.04, the shell I get is /bin/bash: ii bash 4.3-7ubuntu1 amd64 GNU Bourne Again SHell Also on this system is /bin/sh (which kawa's configure does not choose) ii dash 0.5.7-4ubunt amd64 POSIX-compliant shell -seth On 11/25/2014 11:30 PM, Per Bothner wrote: > I experimented some, and it looks like the following works, at least > on ksh: > jvm_args+=("$arg") > > An alternative that may be more portable (though it also goes beyond > Posix): > jvm_args[i++]="$arg"