AC_MSG_ERROR(Need rootname.)
;;
yes)
- if rootuid=`script/has_usrgrp.pl -user root -printuid`; then
+ if rootuid=`$srcdir/script/has_usrgrp.pl -user root -printuid`; then
rootname=root
AC_MSG_RESULT($rootname uid: $rootuid)
else
fi
;;
*)
- if rootuid=`script/has_usrgrp.pl -user $withval -printuid`; then
+ if rootuid=`$srcdir/script/has_usrgrp.pl -user $withval -printuid`; then
rootname=$withval
AC_MSG_RESULT($rootname uid: $rootuid)
else
fi
;;
esac ],
- if rootuid=`script/has_usrgrp.pl -user root -printuid`; then
+ if rootuid=`$srcdir/script/has_usrgrp.pl -user root -printuid`; then
rootname=root
AC_MSG_RESULT($rootname uid: $rootuid)
else
AC_MSG_ERROR(Need rootgroup.)
;;
yes)
- if rootgid=`script/has_usrgrp.pl -group root -printgid`; then
+ if rootgid=`$srcdir/script/has_usrgrp.pl -group root -printgid`; then
rootgroup=root
AC_MSG_RESULT($rootgroup gid: $rootgid)
- elif rootgid=`script/has_usrgrp.pl -group wheel -printgid`; then
+ elif rootgid=`$srcdir/script/has_usrgrp.pl -group wheel -printgid`; then
rootgroup=wheel
AC_MSG_RESULT($rootgroup gid: $rootgid)
else
fi
;;
*)
- if rootgid=`script/has_usrgrp.pl -group $withval -printgid`; then
+ if rootgid=`$srcdir/script/has_usrgrp.pl -group $withval -printgid`; then
rootgroup=$withval
AC_MSG_RESULT($rootgroup gid: $rootgid)
else
fi
;;
esac ],
- if rootgid=`script/has_usrgrp.pl -group root -printgid`; then
+ if rootgid=`$srcdir/script/has_usrgrp.pl -group root -printgid`; then
rootgroup=root
AC_MSG_RESULT($rootgroup gid: $rootgid)
- elif rootgid=`script/has_usrgrp.pl -group wheel -printgid`; then
+ elif rootgid=`$srcdir/script/has_usrgrp.pl -group wheel -printgid`; then
rootgroup=wheel
AC_MSG_RESULT($rootgroup gid: $rootgid)
else