]> git.pld-linux.org Git - packages/bash.git/commitdiff
- changed [ -x ... ] && to [ ! -x ... ] ||
authorSebastian Zagrodzki <sebek@zagrodzki.net>
Wed, 24 May 2000 16:27:27 +0000 (16:27 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- release++

Changed files:
    bash.spec -> 1.48

bash.spec

index e9f96112050a481fb3d9934e3de8a52a1d9d960d..e01fa69502a1c86b09fc3be99ea3895cb24b743b 100644 (file)
--- a/bash.spec
+++ b/bash.spec
@@ -5,7 +5,7 @@ Summary(pl):    GNU Bourne Again Shell (bash)
 Summary(tr):   GNU Bourne Again Shell (bash)
 Name:          bash
 Version:       2.04
-Release:       2
+Release:       3
 Group:         Shells
 Group(pl):     Pow³oki
 License:       GPL
@@ -183,7 +183,7 @@ else
        fi
 fi
 
-[ -x /usr/sbin/fix-info-dir ] && /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
+[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
 
 %post static
 if [ ! -f /etc/shells ]; then
@@ -207,7 +207,7 @@ if [ $1 = 0 ]; then
 fi
 
 %postun
-[ -x /usr/sbin/fix-info-dir ] && /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
+[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
 
 %clean
 rm -rf $RPM_BUILD_ROOT
This page took 0.138333 seconds and 4 git commands to generate.