aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2020-02-15 19:58:02 +0100
committerThomas Deutschmann <whissi@gentoo.org>2020-02-15 21:38:10 +0100
commit9aa413c047bc6cb366746634c8a397d10207ba24 (patch)
treef311526ea1a930dafb3351501476d7231a833874
parentdedupe verify the best we can (diff)
downloadgenkernel-9aa413c047bc6cb366746634c8a397d10207ba24.tar.gz
genkernel-9aa413c047bc6cb366746634c8a397d10207ba24.tar.bz2
genkernel-9aa413c047bc6cb366746634c8a397d10207ba24.zip
gkbuilds/util-linux: Use $D
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
-rw-r--r--gkbuilds/util-linux.gkbuild10
1 files changed, 5 insertions, 5 deletions
diff --git a/gkbuilds/util-linux.gkbuild b/gkbuilds/util-linux.gkbuild
index da09225..0c4377e 100644
--- a/gkbuilds/util-linux.gkbuild
+++ b/gkbuilds/util-linux.gkbuild
@@ -23,7 +23,7 @@ src_configure() {
src_install() {
local MYMAKEOPTS=( "V=1" )
- MYMAKEOPTS+=( "DESTDIR=${DESTDIR}" )
+ MYMAKEOPTS+=( "DESTDIR=${D}" )
MYMAKEOPTS+=( "install-pkgconfigDATA" )
MYMAKEOPTS+=( "install-nodist_blkidincHEADERS" )
MYMAKEOPTS+=( "install-nodist_mountincHEADERS" )
@@ -33,9 +33,9 @@ src_install() {
mkdir "${D}"/sbin || die "Failed to create '${D}/sbin'!"
- cp -a blkid.static "${DESTDIR}"/sbin/blkid \
- || die "Failed to copy '${S}/blkid.static' to '${DESTDIR}/sbin/blkid'!"
+ cp -a blkid.static "${D}"/sbin/blkid \
+ || die "Failed to copy '${S}/blkid.static' to '${D}/sbin/blkid'!"
- "${STRIP}" --strip-all "${DESTDIR}"/sbin/blkid \
- || die "Failed to strip '${DESTDIR}/sbin/blkid'!"
+ "${STRIP}" --strip-all "${D}"/sbin/blkid \
+ || die "Failed to strip '${D}/sbin/blkid'!"
}