summaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2020-05-20 19:45:22 +0000
committerEd Maste <emaste@FreeBSD.org>2020-05-20 19:45:22 +0000
commit697b271da935866850692f7e0cb76434c4e26b13 (patch)
tree4754958410696f1e42706a851a857732d1c2c0c9 /Makefile.inc1
parent66b415fb8f9a7bd9f01d063ecebc2c74cfcb10be (diff)
downloadsrc-test2-697b271da935866850692f7e0cb76434c4e26b13.tar.gz
src-test2-697b271da935866850692f7e0cb76434c4e26b13.zip
pkgbase: use -dev,-dbg instead of -development,-debug
-development is long and awkward, and is also inconsistent with prior art from the Linux world, which uses -dev (Debian) or -devel (Red Hat). Follow the Debian convention, and similarly for debug info packages. Also remove redundant pkgbase development tag from includes. We already tag include files with package=runtime,dev; there is no need to separately tag them as dev. Discussed with: bapt Reviewed by: manu Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D24139
Notes
Notes: svn path=/head/; revision=361290
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc14
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index a303bc9d4aa6..b2b3dd6f7e53 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -1889,7 +1889,7 @@ create-world-package-${pkgname}: .PHONY
_default_flavor= -default
.if make(*package*) && exists(${KSTAGEDIR}/kernel.meta)
. if ${MK_DEBUG_FILES} != "no"
-_debug=-debug
+_debug=-dbg
. endif
create-kernel-packages: .PHONY
. for flavor in "" ${_debug}
@@ -1923,7 +1923,7 @@ create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},}: _pkgbootstrap
. for _kernel in ${BUILDKERNELS:[2..-1]}
. if exists(${KSTAGEDIR}/kernel.${_kernel}.meta)
. if ${MK_DEBUG_FILES} != "no"
-_debug=-debug
+_debug=-dbg
. endif
. for flavor in "" ${_debug}
create-kernel-packages: create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel}