rpms/bash/devel bash.spec,1.142,1.143

Tim Waugh (twaugh) fedora-extras-commits at redhat.com
Fri Jul 20 13:12:35 UTC 2007


Author: twaugh

Update of /cvs/pkgs/rpms/bash/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv5473

Modified Files:
	bash.spec 
Log Message:
* Fri Jul 20 2007 Tim Waugh <twaugh at redhat.com> 3.2-12
- Quote environment variables in the post scriptlet to prevent upgrade
  failures (bug #249005).



Index: bash.spec
===================================================================
RCS file: /cvs/pkgs/rpms/bash/devel/bash.spec,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- bash.spec	5 Jul 2007 09:06:48 -0000	1.142
+++ bash.spec	20 Jul 2007 13:12:02 -0000	1.143
@@ -1,7 +1,7 @@
 Version: 3.2
 Name: bash
 Summary: The GNU Bourne Again shell (bash) version %{version}
-Release: 11%{?dist}
+Release: 12%{?dist}
 Group: System Environment/Shells
 License: GPL
 Url: http://www.gnu.org/software/bash
@@ -200,9 +200,9 @@
 fi
 
 (while read line ; do
-  if [ $line = /bin/bash ]; then
+  if [ "$line" = "/bin/bash" ]; then
     HASBASH=1
-  elif [ $line = /bin/sh ]; then
+  elif [ "$line" = "/bin/sh" ]; then
     HASSH=1
   fi
  done
@@ -238,6 +238,10 @@
 %doc doc/*.ps doc/*.0 doc/*.html doc/article.txt
 
 %changelog
+* Fri Jul 20 2007 Tim Waugh <twaugh at redhat.com> 3.2-12
+- Quote environment variables in the post scriptlet to prevent upgrade
+  failures (bug #249005).
+
 * Thu Jul  5 2007 Tim Waugh <twaugh at redhat.com> 3.2-11
 - Patchlevel 17 (bug #241647).
 




More information about the scm-commits mailing list