diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2025-05-10 11:31:18 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2025-05-10 11:31:18 +0000 |
commit | ef7aa9a0f75d4083cc3bed180aa3478773de516f (patch) | |
tree | 2190cdba7844de83992efd9e215f5aa10440e952 | |
parent | databases/puppetdb-terminus7: Remove expired port (diff) |
devel/quilt: sort BUILD_DEPENDS alphabetically, drop ${LOCALBASE}
We typically specify the full paths to avoid conflicts with
identically named programs in the base which is not the case
for `ggrep' and thus is needless here.
Technically this is non-functional change for the benefit of
having consistent dependencies on GNU tools in this Makefile
and in general within the ports tree.
-rw-r--r-- | devel/quilt/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/devel/quilt/Makefile b/devel/quilt/Makefile index 124ba9058ffb..bb0edc2209ee 100644 --- a/devel/quilt/Makefile +++ b/devel/quilt/Makefile @@ -12,13 +12,13 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= bash:shells/bash \ - gcp:sysutils/coreutils \ - gsed:textproc/gsed \ - gpatch:devel/patch \ - gdiff:textproc/diffutils \ diffstat:textproc/diffstat \ gawk:lang/gawk \ - ${LOCALBASE}/bin/ggrep:textproc/gnugrep + gcp:sysutils/coreutils \ + gdiff:textproc/diffutils \ + ggrep:textproc/gnugrep \ + gpatch:devel/patch \ + gsed:textproc/gsed RUN_DEPENDS:= ${BUILD_DEPENDS} \ formail:mail/procmail |