Skip to content

Commit

Permalink
perl-modules: Fix quoting
Browse files Browse the repository at this point in the history
As @ruester pointed out in bee/bee#213, ${D} should be quoted when used.

Add quotes.
  • Loading branch information
donald committed Mar 7, 2019
1 parent eabddb5 commit 7f4e7ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 {} \;
}

0 comments on commit 7f4e7ca

Please sign in to comment.