*/*: Drop force flag from rm calls
This commit is contained in:
parent
7bcd621638
commit
51c2c0ab22
@ -13,7 +13,7 @@ IUSE=""
|
||||
|
||||
src_prepare() {
|
||||
# bluntly remove the makefile.
|
||||
rm -f Makefile || die "Couldn't remove Makefile"
|
||||
rm Makefile || die "Couldn't remove Makefile"
|
||||
|
||||
default
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ DOCS=( README.md )
|
||||
src_prepare(){
|
||||
default
|
||||
|
||||
rm -rf test || die
|
||||
rm -r test || die
|
||||
}
|
||||
|
||||
src_compile(){
|
||||
|
@ -58,7 +58,7 @@ RDEPEND="
|
||||
"
|
||||
|
||||
src_install() {
|
||||
rm -rf tests || die
|
||||
rm -r tests || die
|
||||
vim-plugin_src_install
|
||||
insinto usr/share/${PN}
|
||||
}
|
||||
|
@ -31,11 +31,10 @@ src_prepare() {
|
||||
default
|
||||
|
||||
if ! use test; then
|
||||
rm -rf test || die
|
||||
rm -f Dockerfile || die
|
||||
rm -r test Dockerfile || die
|
||||
fi
|
||||
# We store the appropriate license information inside the portage tree.
|
||||
rm -rf LICENSE.md || die
|
||||
rm -r LICENSE.md || die
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
|
Loading…
Reference in New Issue
Block a user