On Tue, 2010-08-17 at 09:34 -0400, Dennis Clarke wrote:
libtool: install: ../.././install-sh -c .libs/auth /opt/csw/libexec/dovecot/auth
Which sure looks like the file auth being copied into place
Yes, that's correct.
and then right after we get a failure :
libtool: install: ../.././install-sh -c .libs/checkpassword-reply /opt/csw/libexec/dovecot/checkpassword-reply
This is also correct.
test -z "/opt/csw/libexec/dovecot/auth" || ../.././install-sh -c -d "/opt/csw/libexec/dovecot/auth"
This "|| install" part seems wrong, but it happens with me too. But the main problem is that why does test -z fail above? The auth binary should have been installed there already, so test -z should return success. Or is the auth file zero bytes long? Something's wrong with that..