openbsd-ports/x11/xfce4/xffm/patches/patch-modules_trash_c
steven 24e26d61a7 rm(1) does not have a -v option so don't use it when emptying the trash.
reported by Andrew Smith <asmith at tranquility.fsbusiness.co.uk>.

ok sturm@
2006-02-02 22:15:54 +00:00

13 lines
372 B
Plaintext

$OpenBSD: patch-modules_trash_c,v 1.1 2006/02/02 22:15:54 steven Exp $
--- modules/trash.c.orig Thu Feb 2 23:45:38 2006
+++ modules/trash.c Thu Feb 2 23:46:31 2006
@@ -144,7 +144,7 @@ static
void rm_directory (gchar *fullpath){
char *argument[4];
argument[0]="rm";
- argument[1]="-rfv";
+ argument[1]="-rf";
argument[2]=fullpath;
argument[3]=(char *)0;