From owner-svn-ports-head@FreeBSD.ORG Mon Jun 10 06:42:38 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]) by hub.freebsd.org (Postfix) with ESMTP id 6D2221E2; Mon, 10 Jun 2013 06:42:38 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 600B81DAE; Mon, 10 Jun 2013 06:42:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5A6gcil056550; Mon, 10 Jun 2013 06:42:38 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5A6gcBh056549; Mon, 10 Jun 2013 06:42:38 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201306100642.r5A6gcBh056549@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 10 Jun 2013 06:42:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r320438 - head/Mk 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.14 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: Mon, 10 Jun 2013 06:42:38 -0000 Author: bapt Date: Mon Jun 10 06:42:37 2013 New Revision: 320438 URL: http://svnweb.freebsd.org/changeset/ports/320438 Log: Testing COMPLETE_OPTIONS_LIST is enought to determine if there is options to print Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Mon Jun 10 06:40:45 2013 (r320437) +++ head/Mk/bsd.port.mk Mon Jun 10 06:42:37 2013 (r320438) @@ -6179,7 +6179,7 @@ MULTI_EOL= ": you have to choose at leas SINGLE_EOL= ": you have to select exactly one of them" RADIO_EOL= ": you can only select none or one of them" showconfig: -.if !empty(ALL_OPTIONS) || !empty(OPTIONS_SINGLE) || !empty(OPTIONS_MULTI) || !empty(OPTIONS_RADIO) || !empty(OPTIONS_GROUP) +.if !empty(COMPLETE_OPTIONS_LIST) @${ECHO_MSG} "===> The following configuration options are available for ${PKGNAME}": .for opt in ${ALL_OPTIONS} . if empty(PORT_OPTIONS:M${opt})