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 {} \; }