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

cvs.spec

index e9e79ce7cd259b0cf9f45fdbbde6bef6d5a7497a..dc0faa8f604ec95da067c2f418409dc512f10f44 100644 (file)
--- a/cvs.spec
+++ b/cvs.spec
@@ -127,10 +127,10 @@ gzip -9nf $RPM_BUILD_ROOT{%{_infodir}/cvs*,%{_mandir}/man{1,5,8}/*} \
        doc/*.ps BUGS FAQ MINOR-BUGS NEWS PROJECTS TODO README ChangeLog
 
 %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
 
 %pre pserver
 if [ "$1" = 1 ]; then
This page took 0.092477 seconds and 4 git commands to generate.