diff options
author | Alice Ferrazzi <alicef@gentoo.org> | 2017-06-11 02:07:46 +0000 |
---|---|---|
committer | Alice Ferrazzi <alicef@gentoo.org> | 2017-06-11 02:07:46 +0000 |
commit | 1225dd57bdfb8360f66b836d1b1fbc644594e612 (patch) | |
tree | 49aa5e6c1028e2daa7cd971a7bba774ffe6ba1f9 | |
parent | added Livepatch work api (diff) | |
download | elivepatch-1225dd57bdfb8360f66b836d1b1fbc644594e612.tar.gz elivepatch-1225dd57bdfb8360f66b836d1b1fbc644594e612.tar.bz2 elivepatch-1225dd57bdfb8360f66b836d1b1fbc644594e612.zip |
divided task in compile and install
-rw-r--r-- | sys-kernel/kpatch/kpatch-0.4.0.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys-kernel/kpatch/kpatch-0.4.0.ebuild b/sys-kernel/kpatch/kpatch-0.4.0.ebuild index 24bc74a..5a4fb41 100644 --- a/sys-kernel/kpatch/kpatch-0.4.0.ebuild +++ b/sys-kernel/kpatch/kpatch-0.4.0.ebuild @@ -65,7 +65,12 @@ src_prepare() { default } +src_compile() { + set_arch_to_kernel + emake all +} + src_install() { set_arch_to_kernel - emake DESTDIR="${D}" all install + emake DESTDIR="${D}" install } |