aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarino <marino@FreeBSD.org>2016-08-04 08:05:05 +0800
committermarino <marino@FreeBSD.org>2016-08-04 08:05:05 +0800
commitf20cf36bf08f37951e1e169af33cb17c0958b987 (patch)
tree8ed215031aa6d22565d9a5e319fe6853a4e466a1
parentc8ef3c4e6786c5a485455e74bc589924e89cb31b (diff)
downloadfreebsd-ports-gnome-f20cf36bf08f37951e1e169af33cb17c0958b987.tar.gz
freebsd-ports-gnome-f20cf36bf08f37951e1e169af33cb17c0958b987.tar.zst
freebsd-ports-gnome-f20cf36bf08f37951e1e169af33cb17c0958b987.zip
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
-rw-r--r--sysutils/bstack/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysutils/bstack/Makefile b/sysutils/bstack/Makefile
index 9771f6acb7ef..9678cc084a82 100644
--- a/sysutils/bstack/Makefile
+++ b/sysutils/bstack/Makefile
@@ -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 trace of a running process
LICENSE= BSD3CLAUSE
-RUN_DEPENDS= gdb:devel/gdb
+RUN_DEPENDS= ${LOCALBASE}/bin/gdb:devel/gdb
USE_GITHUB= yes
GH_ACCOUNT= pizzamig