From cf8618825fe98fa967acc6e7a2007a14d7600c7b Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Feb 05 2007 17:20:00 +0000 Subject: - Use full path to utilities in scriptlets (bug #225609). - Resolves: rhbz#225609 --- diff --git a/bash.spec b/bash.spec index d92e37d..29865e2 100644 --- a/bash.spec +++ b/bash.spec @@ -198,9 +198,9 @@ fi) < /etc/shells %postun if [ "$1" = 0 ]; then - grep -v '^/bin/bash$' < /etc/shells | \ - grep -v '^/bin/sh$' > /etc/shells.new - mv /etc/shells.new /etc/shells + /bin/grep -v '^/bin/bash$' < /etc/shells | \ + /bin/grep -v '^/bin/sh$' > /etc/shells.new + /bin/mv /etc/shells.new /etc/shells fi %files -f %{name}.lang @@ -221,6 +221,7 @@ fi %changelog * Mon Feb 5 2007 Tim Waugh +- Use full path to utilities in scriptlets (bug #225609). - Fix missing sh-bangs in example scripts (bug #225609). - Post requires ncurses (bug #224567). - Removed Prefix tag (bug #225609).