From owner-cvs-all Wed Jul 4 11:29:53 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F20FA37B403; Wed, 4 Jul 2001 11:29:48 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f64ITmM95778; Wed, 4 Jul 2001 11:29:48 -0700 (PDT) (envelope-from sobomax) Message-Id: <200107041829.f64ITmM95778@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 4 Jul 2001 11:29:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.gnome.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2001/07/04 11:29:48 PDT Modified files: Mk bsd.gnome.mk Log: Workarround a bug in make(1) that leads results in --datadir/--localstatedir not being set properly for some ports. The problem is that ":S" modifier collapses spaces, even if the regex doesn't match. The following piece of make(1) "code" illustrates the problem: foo= a b .if ${foo} != ${foo:S/x//} all: @${ECHO} 'BAD!' .endif Revision Changes Path 1.11 +3 -3 ports/Mk/bsd.gnome.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message