diff options
author | joey <joey> | 2002-06-21 00:46:43 +0000 |
---|---|---|
committer | joey <joey> | 2002-06-21 00:46:43 +0000 |
commit | c84545b9234bf1d233983d5ae59ab59d573a5460 (patch) | |
tree | 08b66dfc30003e1ec9afeab75aa2848fb786bb8b /autoscripts/postinst-emacsen | |
parent | 3c36c2532c3907f0a315d9010654176e8e9fc319 (diff) | |
download | debhelper-c84545b9234bf1d233983d5ae59ab59d573a5460.tar.gz |
r533: * In script fragments, use more posix tests, no -a or -o, no parens.
Closes: #150403
Diffstat (limited to 'autoscripts/postinst-emacsen')
-rw-r--r-- | autoscripts/postinst-emacsen | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoscripts/postinst-emacsen b/autoscripts/postinst-emacsen index 97004eb7..f80e1dbd 100644 --- a/autoscripts/postinst-emacsen +++ b/autoscripts/postinst-emacsen @@ -1,4 +1,4 @@ -if [ "$1" = "configure" -a -x /usr/lib/emacsen-common/emacs-package-install ] +if [ "$1" = "configure" ] && [ -x /usr/lib/emacsen-common/emacs-package-install ] then /usr/lib/emacsen-common/emacs-package-install #PACKAGE# fi |