From mboxrd@z Thu Jan 1 00:00:00 1970 From: Junio C Hamano Subject: Re: 026fa0d5ad Breaks installs with absolue $(gitexecdir) and $(template_dir) variables using older GNU makes Date: Wed, 04 Feb 2009 23:35:43 -0800 Message-ID: <7v63jpibe8.fsf@gitster.siamese.dyndns.org> References: <4985E8E1.90303@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Steffen Prohaska , git@vger.kernel.org To: gitzilla@gmail.com X-From: git-owner@vger.kernel.org Thu Feb 05 08:37:23 2009 Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1LUynW-0002fA-WF for gcvg-git-2@gmane.org; Thu, 05 Feb 2009 08:37:19 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752459AbZBEHfw (ORCPT ); Thu, 5 Feb 2009 02:35:52 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752351AbZBEHfv (ORCPT ); Thu, 5 Feb 2009 02:35:51 -0500 Received: from a-sasl-quonix.sasl.smtp.pobox.com ([208.72.237.25]:59266 "EHLO sasl.smtp.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752057AbZBEHfv (ORCPT ); Thu, 5 Feb 2009 02:35:51 -0500 Received: from localhost.localdomain (unknown [127.0.0.1]) by b-sasl-quonix.sasl.smtp.pobox.com (Postfix) with ESMTP id F1CC12A78F; Thu, 5 Feb 2009 02:35:48 -0500 (EST) Received: from pobox.com (unknown [68.225.240.211]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by b-sasl-quonix.sasl.smtp.pobox.com (Postfix) with ESMTPSA id 292B92A78B; Thu, 5 Feb 2009 02:35:44 -0500 (EST) In-Reply-To: <4985E8E1.90303@gmail.com> (A. Large Angry's message of "Sun, 01 Feb 2009 13:24:33 -0500") User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) X-Pobox-Relay-ID: 9BA17ECE-F357-11DD-B5D5-6F7C8D1D4FD0-77302942!a-sasl-quonix.pobox.com Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: A Large Angry SCM writes: > The new test is also wrong; (for *nix systems) in that it really wants > to test if the first character is a '/' but GNU make doesn't have a > way to do that directly. Hmph. Isn't it just the matter of doing something silly like this? ifeq ($(filter /%,$(template_dir)),) ... it does not start with a slash else ... it does endif