From 08b585a9f2261376b3141d8bc4e1f672c16fd760 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Thu, 15 Feb 2018 18:43:17 +0100 Subject: [PATCH] distrho-ports: fix unintended double installation of presets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-misc/recipes-multimedia/distrho/distrho-ports.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-misc/recipes-multimedia/distrho/distrho-ports.bb b/recipes-misc/recipes-multimedia/distrho/distrho-ports.bb index ff6b2496..2ab55288 100644 --- a/recipes-misc/recipes-multimedia/distrho/distrho-ports.bb +++ b/recipes-misc/recipes-multimedia/distrho/distrho-ports.bb @@ -77,11 +77,11 @@ do_install() { # presets install -d ${D}${libdir}/lv2 # obxd - for file in `find ${WORKDIR}/linuxsynths-obxd-patches -maxdepth 1` ; do + for file in `find ${WORKDIR}/linuxsynths-obxd-patches -mindepth 1 -maxdepth 1` ; do cp -rf $file ${D}${libdir}/lv2/ done # vex - for file in `find ${WORKDIR}/linuxsynths-vex-patches -maxdepth 1` ; do + for file in `find ${WORKDIR}/linuxsynths-vex-patches -mindepth 1 -maxdepth 1` ; do cp -rf $file ${D}${libdir}/lv2/ done