From owner-svn-ports-head@FreeBSD.ORG Wed Mar 25 16:10:05 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 82181201; Wed, 25 Mar 2015 16:10:05 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C950C56; Wed, 25 Mar 2015 16:10:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2PGA5Kr056921; Wed, 25 Mar 2015 16:10:05 GMT (envelope-from nobutaka@FreeBSD.org) Received: (from nobutaka@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2PGA5EJ056920; Wed, 25 Mar 2015 16:10:05 GMT (envelope-from nobutaka@FreeBSD.org) Message-Id: <201503251610.t2PGA5EJ056920@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: nobutaka set sender to nobutaka@FreeBSD.org using -f From: MANTANI Nobutaka Date: Wed, 25 Mar 2015 16:10:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r382248 - head/net/dshell 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.18-1 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, 25 Mar 2015 16:10:05 -0000 Author: nobutaka Date: Wed Mar 25 16:10:04 2015 New Revision: 382248 URL: https://svnweb.freebsd.org/changeset/ports/382248 QAT: https://qat.redports.org/buildarchive/r382248/ Log: Fix variable assignment of RUN_DEPENDS. Pointed out by: adamw Modified: head/net/dshell/Makefile Modified: head/net/dshell/Makefile ============================================================================== --- head/net/dshell/Makefile Wed Mar 25 16:07:20 2015 (r382247) +++ head/net/dshell/Makefile Wed Mar 25 16:10:04 2015 (r382248) @@ -17,7 +17,7 @@ BUILD_DEPENDS= bash:${PORTSDIR}/shells/b ${PYTHON_PKGNAMEPREFIX}dpkt>0:${PORTSDIR}/net/py-dpkt \ ${PYTHON_PKGNAMEPREFIX}ipy>0:${PORTSDIR}/net-mgmt/py-ipy \ ${PYTHON_PKGNAMEPREFIX}pypcap>0:${PORTSDIR}/net/py-pypcap -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} USE_GITHUB= yes USES= python