aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gmail.com>2017-12-28 12:47:39 -0500
committerTim Harder <radhermit@gmail.com>2018-03-06 23:43:41 -0500
commit4982bf9ee126f13ff28d0f4f20d481c09b71f84c (patch)
treeb4d6761afcc0f100372f1f6c41a6bc59c48fbe0c
parentebd/ebuild-daemon: move ebd read/write funcs into ebuild-daemon.lib (diff)
downloadpkgcore-4982bf9ee126f13ff28d0f4f20d481c09b71f84c.tar.gz
pkgcore-4982bf9ee126f13ff28d0f4f20d481c09b71f84c.tar.bz2
pkgcore-4982bf9ee126f13ff28d0f4f20d481c09b71f84c.zip
ebd/eapi/common.lib: drop redundant dir creation for *into funcs
The related commands should already handle directory creation internally.
-rw-r--r--ebd/eapi/common.lib12
1 files changed, 0 insertions, 12 deletions
diff --git a/ebd/eapi/common.lib b/ebd/eapi/common.lib
index dceb549b..9d26a03a 100644
--- a/ebd/eapi/common.lib
+++ b/ebd/eapi/common.lib
@@ -272,9 +272,6 @@ into() {
export DESTTREE=""
else
export DESTTREE=$1
- if [[ ! -d ${ED}${DESTTREE} ]]; then
- install -d "${ED}${DESTTREE}"
- fi
fi
}
@@ -284,9 +281,6 @@ insinto() {
export INSDESTTREE=""
else
export INSDESTTREE=$1
- if [[ ! -d ${ED}${INSDESTTREE} ]]; then
- install -d "${ED}${INSDESTTREE}"
- fi
fi
}
@@ -296,9 +290,6 @@ exeinto() {
export PKGCORE_EXEDESTTREE=""
else
export PKGCORE_EXEDESTTREE=$1
- if [[ ! -d ${ED}${PKGCORE_EXEDESTTREE} ]]; then
- install -d "${ED}${PKGCORE_EXEDESTTREE}"
- fi
fi
}
@@ -308,9 +299,6 @@ docinto() {
export PKGCORE_DOCDESTTREE=""
else
export PKGCORE_DOCDESTTREE=$1
- if [[ ! -d ${ED}usr/share/doc/${PF}/${PKGCORE_DOCDESTTREE} ]]; then
- install -d "${ED}usr/share/doc/${PF}/${PKGCORE_DOCDESTTREE}"
- fi
fi
}