Skip to content

perl-modules: Fix quoting #30

Merged
merged 1 commit into from
Mar 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildtypes/perl-module-makemaker.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -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 {} \;
}
2 changes: 1 addition & 1 deletion buildtypes/perl-module.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ bee_install() {
start_cmd ./Build \
install \
"${@}"
find ${D} -name perllocal.pod -exec rm {} \;
find "${D}" -name perllocal.pod -exec rm {} \;
}