#!/bin/sh
tools_wrapper_sed=/usr/bin/sed
shquote()
{
	shquoted=$1
	case $shquoted in
	*\'*)
		shquoted=`$tools_wrapper_sed -e "s,','\\\\\\\\'',g" <<EOF
$shquoted
EOF`
	esac
	case $shquoted in
	(*[!!%+,\-./0-9:=@A-Z_a-z]*|'')
		case $shquoted in
		(*=*)	lhs=${shquoted%%=*}
			case $lhs in
			(*[!!%+,\-./0-9:=@A-Z_a-z]*|'') ;;
			(*)	shquoted="$lhs='${shquoted#*=}'"
				return
			esac
		esac
		shquoted="'$shquoted'"
	esac
}
shquote_args() {
	shquoted_args=''
	for arg in "$@"; do
		shquote "$arg"
		shquoted_args="$shquoted_args $shquoted"
	done
}
wrapperlog="${TOOLS_WRAPPER_LOG-/var/pkgsrc/bulklog/kmplayer-0.11.3dnb69/work.log}"
shquote_args "$@"
echo "[*] "/var/pkgsrc/work/multimedia/kmplayer/work/.tools/bin/aclocal"$shquoted_args" >> $wrapperlog
logprefix="set args$shquoted_args; shift; "
logmain=/usr/pkgsrc/mk/gnu-config/missing\ aclocal
echo '<.>' "$logprefix$logmain" >> $wrapperlog
/usr/pkgsrc/mk/gnu-config/missing aclocal
