From 34f99584231f6282218523e9c578ec668dada5af Mon Sep 17 00:00:00 2001 From: Sebastian Zagrodzki Date: Wed, 24 May 2000 16:27:27 +0000 Subject: [PATCH] - changed [ -x ... ] && to [ ! -x ... ] || - release++ Changed files: bash.spec -> 1.48 --- bash.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bash.spec b/bash.spec index e9f9611..e01fa69 100644 --- 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 -- 2.44.0