From 1bb4d6796e752a750b40d5a57ff7df0d44ea98c6 Mon Sep 17 00:00:00 2001 From: Sebastian Zagrodzki Date: Wed, 24 May 2000 16:50:44 +0000 Subject: [PATCH] - changed [ -x ... ] && to [ ! -x ... ] || Changed files: bison.spec -> 1.30 --- bison.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bison.spec b/bison.spec index c86463e..a05252a 100644 --- a/bison.spec +++ b/bison.spec @@ -74,10 +74,10 @@ install %{SOURCE1} $RPM_BUILD_ROOT%{_mandir}/pl/man1/bison.1 gzip -9nf $RPM_BUILD_ROOT{%{_infodir}/*,%{_mandir}/{man1/*,pl/man1/*}} %post -[ -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 %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.43.0