From owner-svn-ports-head@FreeBSD.ORG Wed Nov 20 02:42:32 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A19B98D5; Wed, 20 Nov 2013 02:42:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 910442F35; Wed, 20 Nov 2013 02:42:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAK2gWuN089549; Wed, 20 Nov 2013 02:42:32 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAK2gWTZ089548; Wed, 20 Nov 2013 02:42:32 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201311200242.rAK2gWTZ089548@svn.freebsd.org> From: Eitan Adler Date: Wed, 20 Nov 2013 02:42:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334369 - head/audio/musicpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Nov 2013 02:42:32 -0000 Author: eadler Date: Wed Nov 20 02:42:32 2013 New Revision: 334369 URL: http://svnweb.freebsd.org/changeset/ports/334369 Log: s/.error/ignore/g This port needs additional work, but fix building INDEX for now. Approved by: crees (maintainer, implicit) Modified: head/audio/musicpd/Makefile Modified: head/audio/musicpd/Makefile ============================================================================== --- head/audio/musicpd/Makefile Wed Nov 20 02:04:55 2013 (r334368) +++ head/audio/musicpd/Makefile Wed Nov 20 02:42:32 2013 (r334369) @@ -62,7 +62,7 @@ SUB_LIST+= MPDDIR=${MPDDIR} .include .ifdef MPDCONF -.error Please remove the MPDCONF line from make.conf, then rename ${PREFIX}/etc/${MPDCONF} to musicpd.conf, if it exists +IGNORE=Please remove the MPDCONF line from make.conf, then rename ${PREFIX}/etc/${MPDCONF} to musicpd.conf, if it exists .endif .include @@ -70,9 +70,9 @@ SUB_LIST+= MPDDIR=${MPDDIR} .if exists(${PREFIX}/etc/mpd.conf) MSG=You still have ${PREFIX}/etc/mpd.conf in existence-- this file is no longer used by musicpd. .if !exists(${PREFIX}/etc/musicpd.conf) -.error ${MSG} Move it to ${PREFIX}/etc/musicpd.conf. +IGNORE=${MSG} Move it to ${PREFIX}/etc/musicpd.conf. .else -.error ${MSG} You also have musicpd.conf-- check carefully to see which one you want, and remove mpd.conf. +IGNORE=${MSG} You also have musicpd.conf-- check carefully to see which one you want, and remove mpd.conf. .endif .endif