From 9f694b66b50ff39f906221466e1b1916da56f8a6 Mon Sep 17 00:00:00 2001 From: Christophe CURIS Date: Wed, 18 Jul 2012 23:23:50 +0200 Subject: [PATCH] Fixed warning in Debian's wrapper script for wmaker The Debian script for WindowMaker generates some warnings on startup due to 'find' being cautious about its options, updated them to be in line with expectations. --- debian/debianfiles/wmaker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/debianfiles/wmaker b/debian/debianfiles/wmaker index 83175632..eccc6424 100644 --- a/debian/debianfiles/wmaker +++ b/debian/debianfiles/wmaker @@ -63,7 +63,7 @@ if [ -x $convertfonts -a ! -e "$wm_base/.fonts_converted" ] ; then if [ -f "$gs_defaults/WMGLOBAL" ] ; then $convertfonts --keep-xlfd "$gs_defaults/WMGLOBAL" fi - find "$wm_styles" -type f -print0 -mindepth 1 -maxdepth 1 | + find "$wm_styles" -mindepth 1 -maxdepth 1 -type f -print0 | xargs -0 -r -n 1 $convertfonts --keep-xlfd touch "$wm_base/.fonts_converted" fi -- 2.11.4.GIT