diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-08-24 01:03:42 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:38 -0500 |
commit | b075bb842d6665be3212ddf93d4ccb98472f341a (patch) | |
tree | 7b6065a16bbc5f91e8cfe67e65e6127dc51d76b9 /source4/lib/ldb/docs | |
parent | 18f93fce20162662ec16d4914320c7c6b6435ae1 (diff) | |
download | samba-b075bb842d6665be3212ddf93d4ccb98472f341a.tar.gz samba-b075bb842d6665be3212ddf93d4ccb98472f341a.tar.bz2 samba-b075bb842d6665be3212ddf93d4ccb98472f341a.zip |
r17765: fix handling of old solaris /bin/sh in ldb build/test
(This used to be commit f41d3ed4b3d76c37c9c5bfd15e9e4e27179450f0)
Diffstat (limited to 'source4/lib/ldb/docs')
-rwxr-xr-x | source4/lib/ldb/docs/builddocs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/docs/builddocs.sh b/source4/lib/ldb/docs/builddocs.sh index b071f0f954..64835c9efe 100755 --- a/source4/lib/ldb/docs/builddocs.sh +++ b/source4/lib/ldb/docs/builddocs.sh @@ -5,7 +5,7 @@ XSLTPROC="$1" SRCDIR="$2" -if ! test -x "$XSLTPROC"; then +if [ -z "$XSLTPROC" ] || [ ! -x "$XSLTPROC" ]; then echo "xsltproc not installed" exit 0 fi |