From 21b3a32c7e979f0c62ae9d042c1856f41f6f4612 Mon Sep 17 00:00:00 2001 From: Pierre Date: Wed, 12 Jan 2011 11:34:42 +0100 Subject: [PATCH] gconf2key migration: do not grep on full pathname --- src/utils/na-gconf2key.sh.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/na-gconf2key.sh.in b/src/utils/na-gconf2key.sh.in index 51a8e532..5efe411a 100644 --- a/src/utils/na-gconf2key.sh.in +++ b/src/utils/na-gconf2key.sh.in @@ -417,9 +417,9 @@ for dir in $(gconftool-2 --all-dirs ${na_configurations}); do while [ -e ${opt_dir}/${id}-${i}.desktop ]; do let i+=1 done - command "${na_print_program} --id ${id} | grep -v ${na_print_program} > ${opt_dir}/${id}-${i}.desktop" + command "${na_print_program} --id ${id} | grep -v 'nautilus-actions-print' > ${opt_dir}/${id}-${i}.desktop" else - command "${na_print_program} --id ${id} | grep -v ${na_print_program} > ${opt_dir}/${id}.desktop" + command "${na_print_program} --id ${id} | grep -v 'nautilus-actions-print' > ${opt_dir}/${id}.desktop" fi done -- 2.11.4.GIT