From 7f4e7ca6520da2a6c871f813f1ee31d93f7d1962 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Thu, 7 Mar 2019 17:31:24 +0100 Subject: [PATCH] perl-modules: Fix quoting As @ruester pointed out in bee/bee#213, ${D} should be quoted when used. Add quotes. --- buildtypes/perl-module-makemaker.sh.in | 2 +- buildtypes/perl-module.sh.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/buildtypes/perl-module-makemaker.sh.in b/buildtypes/perl-module-makemaker.sh.in index 67e8d5a..14e72d8 100644 --- a/buildtypes/perl-module-makemaker.sh.in +++ b/buildtypes/perl-module-makemaker.sh.in @@ -53,5 +53,5 @@ bee_install() { start_cmd make ${BEE_MAKEFLAGS} \ install \ "${@}" - find ${D} -name perllocal.pod -exec rm {} \; + find "${D}" -name perllocal.pod -exec rm {} \; } diff --git a/buildtypes/perl-module.sh.in b/buildtypes/perl-module.sh.in index ae16b73..1f74794 100644 --- a/buildtypes/perl-module.sh.in +++ b/buildtypes/perl-module.sh.in @@ -53,5 +53,5 @@ bee_install() { start_cmd ./Build \ install \ "${@}" - find ${D} -name perllocal.pod -exec rm {} \; + find "${D}" -name perllocal.pod -exec rm {} \; }