diff options
author | Antti-Juhani Kaijanaho <ajk@debian.org> | 2006-04-01 13:31:21 +0100 |
---|---|---|
committer | Antti-Juhani Kaijanaho <ajk@debian.org> | 2006-04-01 13:31:21 +0100 |
commit | ffe4dc026dc7d25519020fa9f53b312f54bab0eb (patch) | |
tree | 11038acd6af57c805e4f6a3ca86209e83d1539a0 /debian | |
parent | fcc125317fd6a1b466d1707c27d4e491074d594e (diff) | |
download | dctrl-tools-ffe4dc026dc7d25519020fa9f53b312f54bab0eb.tar.gz |
debian/postinst.grep-dctrl: remove the XSI-ism of -a in test.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/postinst.grep-dctrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/postinst.grep-dctrl b/debian/postinst.grep-dctrl index 3e3cd0f..733fca2 100644 --- a/debian/postinst.grep-dctrl +++ b/debian/postinst.grep-dctrl @@ -6,7 +6,7 @@ docdir=/usr/share/doc/grep-dctrl case $1 in configure) - if [ -d $docdir -a ! -L $docdir ] ; then + if [ -d $docdir ] && [ ! -L $docdir ] ; then if rmdir $docdir ; then ln -s dctrl-tools $docdir fi |