diff options
author | root <root@rshg054.dnsready.net> | 2013-03-10 00:51:34 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-03-10 00:51:34 -0800 |
commit | 6ee08d6a9217906f2ef84f70923d3d362d4b40ad (patch) | |
tree | dc3d842884f61485a4c01889d37d9432620d5e38 /extra/speech-dispatcher/speech-dispatcher.install | |
parent | 92eac63df242654434dceb000bac083f6e81a6b9 (diff) |
Sun Mar 10 00:50:57 PST 2013
Diffstat (limited to 'extra/speech-dispatcher/speech-dispatcher.install')
-rw-r--r-- | extra/speech-dispatcher/speech-dispatcher.install | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extra/speech-dispatcher/speech-dispatcher.install b/extra/speech-dispatcher/speech-dispatcher.install index 93f4f9363..1565d3a31 100644 --- a/extra/speech-dispatcher/speech-dispatcher.install +++ b/extra/speech-dispatcher/speech-dispatcher.install @@ -1,10 +1,10 @@ info_dir=usr/share/info info_files=('speech-dispatcher.info' - 'speech-dispatcher-cs.info' 'ssip.info' 'spd-say.info') post_install() { + [[ -x usr/bin/install-info ]] || return 0 for f in ${info_files[@]}; do install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null done @@ -15,6 +15,7 @@ post_upgrade() { } pre_remove() { + [[ -x usr/bin/install-info ]] || return 0 for f in ${info_files[@]}; do install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null done |