From owner-svn-ports-all@FreeBSD.ORG Sat Feb 16 14:24:10 2013 Return-Path: Delivered-To: svn-ports-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6CDBA7F7; Sat, 16 Feb 2013 14:24:10 +0000 (UTC) (envelope-from ehaupt@critical.ch) Received: from mx.critical.ch (mx.critical.ch [IPv6:2001:1620:f05::1]) by mx1.freebsd.org (Postfix) with ESMTP id EC68BCE4; Sat, 16 Feb 2013 14:24:09 +0000 (UTC) Received: from beaver.home.critical.ch (84-72-7-76.dclient.hispeed.ch [84.72.7.76]) (authenticated bits=0) by mx.critical.ch (8.14.4/8.14.4/critical-1.0) with ESMTP id r1GEO66K018552; Sat, 16 Feb 2013 15:24:07 +0100 (CET) (envelope-from ehaupt@critical.ch) Date: Sat, 16 Feb 2013 15:24:06 +0100 From: Emanuel Haupt To: Emanuel Haupt Subject: Re: svn commit: r312354 - head/audio/xmp Message-Id: <20130216152406.04fe7cff5e79f9f2eb623140@critical.ch> In-Reply-To: <201302161421.r1GELYfr013815@svn.freebsd.org> References: <201302161421.r1GELYfr013815@svn.freebsd.org> X-Mailer: Sylpheed 3.3.0 (GTK+ 2.24.6; amd64-portbld-freebsd9.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Feb 2013 14:24:10 -0000 Emanuel Haupt wrote: > Author: ehaupt > Date: Sat Feb 16 14:21:33 2013 > New Revision: 312354 > URL: http://svnweb.freebsd.org/changeset/ports/312354 > > Log: > - Work around a case where .if !exists(${ETCDIR}/${f}) fails > - Consistent usage of %%ETCDIR%% > > Modified: > head/audio/xmp/Makefile > head/audio/xmp/pkg-plist > > Modified: head/audio/xmp/Makefile > ============================================================================== > --- head/audio/xmp/Makefile Sat Feb 16 14:10:55 2013 > (r312353) +++ head/audio/xmp/Makefile Sat Feb 16 14:21:33 > 2013 (r312354) @@ -50,11 +50,9 @@ post-patch: > @${REINPLACE_CMD} -e 's|\ install-conf||' > ${WRKSRC}/Makefile.in > post-install: > - ${MKDIR} ${PREFIX}/etc/xmp > + ${MKDIR} ${ETCDIR} > .for f in ${CONFIG_FILES} > -.if !exists(${ETCDIR}/${f}) Can someone explain why this fails? Emanuel