From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?Q?Beno=C3=AEt_Person?= Subject: Re: [PATCH v7 2/7] wrap-for-bin: Make bin-wrappers chainable Date: Wed, 3 Jul 2013 01:19:19 +0200 Message-ID: References: <1372804789-12732-1-git-send-email-benoit.person@ensimag.fr> <1372804789-12732-3-git-send-email-benoit.person@ensimag.fr> <7vk3l8in2c.fsf@alter.siamese.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Cc: Git Mailing List , Celestin Matte , Matthieu Moy To: Junio C Hamano X-From: git-owner@vger.kernel.org Wed Jul 03 01:19:27 2013 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Uu9r2-0000MY-16 for gcvg-git-2@plane.gmane.org; Wed, 03 Jul 2013 01:19:24 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754897Ab3GBXTU (ORCPT ); Tue, 2 Jul 2013 19:19:20 -0400 Received: from mail-ie0-f182.google.com ([209.85.223.182]:48360 "EHLO mail-ie0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754561Ab3GBXTT (ORCPT ); Tue, 2 Jul 2013 19:19:19 -0400 Received: by mail-ie0-f182.google.com with SMTP id s9so13763220iec.41 for ; Tue, 02 Jul 2013 16:19:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=UroieQRPDlYVlVRKHXUDqG2cW/UyVyZBSWpaVL0OtBk=; b=h2Z29FFp8PNG3xskBaASIr/Ea7A9SqeRLEUVbILdtYcF1FoVB8AEYhX4ypl+SLPM5M xuWuP4Uq/luVtD6ka9pWIfqxO6an+321S8hF1u2YS62b4X4/LBbtose7sJqY8ve+uM+Y eINemXZz0TCsDbEAIdPIBcaD2O1OgkXDd4j2kVVYqhB+V/EDhdSGcNXa6aO4DUgWH/+p Za8w/mw4f1oB/876RR5ipYgRgo+EPeXUAUoEmd9pCPKDVdWRoWAleqraOwifZKWo9n2o 4oM1i+TVHbaubdUlmSJYaHrmaWfb+d72dGCoM1JcVyndFT4KWb1IxtBi5KeLhAsmrGCs C8Qg== X-Received: by 10.50.153.109 with SMTP id vf13mr22571251igb.58.1372807159194; Tue, 02 Jul 2013 16:19:19 -0700 (PDT) Received: by 10.42.210.20 with HTTP; Tue, 2 Jul 2013 16:19:19 -0700 (PDT) In-Reply-To: <7vk3l8in2c.fsf@alter.siamese.dyndns.org> X-Google-Sender-Auth: HysewXGbjc_kbz3N5SDSXUU9Ne4 Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: > Do we want to add that ':' unconditionally? Could GITPERLLIB be > empty? For now, GITPERLLIB is only used in that kind of statements: use lib (split(/:/, $ENV{GITPERLLIB} || ... )); The trailing ':' does not really matter, split will ignore it. With the current codebase, I think it's nicer to do it that way (makes wrap-for-bin.sh more readable).