AC_DEFUN([PATCH_LIBTOOL_ON_DARWIN_ZSH_OVERQUOTING],
[# libtool-1.4 specific, on zsh target the final requoting does one too much
case "$host_os" in
darwin*)
if grep "1.920" libtool ; then
AC_MSG_RESULT(patching libtool on .so-sharedlib creation (zsh overquoting))
test -f libtool.old || (mv libtool libtool.old && cp libtool.old libtool)
sed -e '/archive_cmds=/s:\\\\":\\":g' libtool > libtool.new
mv libtool.new libtool
test -f libtool || (test -f libtool.old && mv libtool.old libtool)
fi
;;
esac
])