From 385848d4fa12fac377fb264b39b503077137ec88 Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Tue, 28 May 2013 16:45:30 -0700 Subject: [PATCH] fix(etcd-lib/etcd-lib): ensure it makes it to disk not all of the /usr/lib files were making it to disk, fix this. --- .../coreos-overlay/coreos-base/etcd-lib/etcd-lib-9999.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sdk_container/src/third_party/coreos-overlay/coreos-base/etcd-lib/etcd-lib-9999.ebuild b/sdk_container/src/third_party/coreos-overlay/coreos-base/etcd-lib/etcd-lib-9999.ebuild index f85ff56cb5..6754264987 100644 --- a/sdk_container/src/third_party/coreos-overlay/coreos-base/etcd-lib/etcd-lib-9999.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/coreos-base/etcd-lib/etcd-lib-9999.ebuild @@ -9,7 +9,7 @@ EGIT_REPO_SERVER="https://bitbucket.org" EGIT_REPO_URI="${EGIT_REPO_SERVER}/coreos/etcd-lib.git" EGIT_BRANCHEGIT_BRANCH="master" -inherit git +inherit git systemd DESCRIPTION="Experiments in using etcd" HOMEPAGE="https://bitbucket.org/coreos/etcd-libs" @@ -30,5 +30,6 @@ IUSE="" src_install() { systemd_dounit "${S}"/etcd@.service dodir /usr/lib/etcd/ - cp -R "${S}/*" "${D}/usr/lib/etcd/" + insinto /usr/lib/etcd/ + doins -r "${S}"/* }