Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Aug 2016 00:05:06 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r419564 - head/sysutils/bstack
Message-ID:  <201608040005.u74056EZ037410@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Thu Aug  4 00:05:05 2016
New Revision: 419564
URL: https://svnweb.freebsd.org/changeset/ports/419564

Log:
  sysutils/bstack: properly register gdb as RUN_DEPENDS
  
  bstack requires the ports version of gdb, but the was RUN_DEPENDS was
  specified, the base gdb satisfied the requirement, thus ports gdb is
  never registered as a dependency.  Specify using the full path of gdb
  to rectify + revbump.
  
  approved by:	just-fix-it

Modified:
  head/sysutils/bstack/Makefile

Modified: head/sysutils/bstack/Makefile
==============================================================================
--- head/sysutils/bstack/Makefile	Wed Aug  3 23:47:55 2016	(r419563)
+++ head/sysutils/bstack/Makefile	Thu Aug  4 00:05:05 2016	(r419564)
@@ -2,6 +2,7 @@
 
 PORTNAME=	bstack
 PORTVERSION=	0.1
+PORTREVISION=	1
 CATEGORIES=	sysutils
 
 MAINTAINER=	luca.pizzamiglio@gmail.com
@@ -9,7 +10,7 @@ COMMENT=	Debug tool that shows the stack
 
 LICENSE=	BSD3CLAUSE
 
-RUN_DEPENDS=	gdb:devel/gdb
+RUN_DEPENDS=	${LOCALBASE}/bin/gdb:devel/gdb
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	pizzamig



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608040005.u74056EZ037410>