diff options
author | Bertrand Jacquin <bertrand@jacquin.bzh> | 2019-05-05 17:36:35 +0100 |
---|---|---|
committer | Bertrand Jacquin <bertrand@jacquin.bzh> | 2019-05-05 17:36:35 +0100 |
commit | 738b1e516026ff234018c424f0d32bdb174aa720 (patch) | |
tree | 898a7f40cd1f71f552f3825389475006eddd07b1 /eclass/linux-build.eclass | |
parent | eclass/linux-build: run default make since vmlinux and modules are built (diff) | |
download | portage-738b1e516026ff234018c424f0d32bdb174aa720.tar.xz |
eclass/linux-build: avoid globbing with doins
Needed when dotfiles needs to be installed
Diffstat (limited to 'eclass/linux-build.eclass')
-rw-r--r-- | eclass/linux-build.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/linux-build.eclass b/eclass/linux-build.eclass index 67a12f2a..66dbee5e 100644 --- a/eclass/linux-build.eclass +++ b/eclass/linux-build.eclass @@ -397,7 +397,7 @@ _linux-build_src_install_build() { if [[ -d "${WORKDIR}/bootloader/boot" ]] ; then insinto /boot - doins -r "${WORKDIR}"/bootloader/boot/* + doins -r "${WORKDIR}/bootloader/boot/." insinto /etc/env.d newins "${WORKDIR}/env.d_42-${P}" "42-${P}" |