summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-doc
diff options
context:
space:
mode:
authorjoey <joey>2002-06-21 00:46:43 +0000
committerjoey <joey>2002-06-21 00:46:43 +0000
commitc84545b9234bf1d233983d5ae59ab59d573a5460 (patch)
tree08b66dfc30003e1ec9afeab75aa2848fb786bb8b /autoscripts/postinst-doc
parent3c36c2532c3907f0a315d9010654176e8e9fc319 (diff)
r533: * In script fragments, use more posix tests, no -a or -o, no parens.
Closes: #150403
Diffstat (limited to 'autoscripts/postinst-doc')
-rw-r--r--autoscripts/postinst-doc2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoscripts/postinst-doc b/autoscripts/postinst-doc
index a4b000ba..a49f4ca4 100644
--- a/autoscripts/postinst-doc
+++ b/autoscripts/postinst-doc
@@ -1,5 +1,5 @@
if [ "$1" = "configure" ]; then
- if [ -d /usr/doc -a ! -e /usr/doc/#PACKAGE# -a -d /usr/share/doc/#PACKAGE# ]; then
+ if [ -d /usr/doc ] && [ ! -e /usr/doc/#PACKAGE# ] && [ -d /usr/share/doc/#PACKAGE# ]; then
ln -sf ../share/doc/#PACKAGE# /usr/doc/#PACKAGE#
fi
fi