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