Added test for chown

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11714 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2001-12-12 15:19:22 +00:00
parent 668f98763f
commit 75a241a15d

View file

@ -230,6 +230,11 @@ AC_ARG_WITH(tar,
[--with-tar Set the name of the tar program to use],
TAR=$withval,)
AC_CHECK_PROG(CHOWN, chown, chown, none)
if test "$CHOWN" = "none"; then
AC_MSG_ERROR("Could not find chown.");
fi
#--------------------------------------------------------------------
# Miscellaneous flags and setup
#--------------------------------------------------------------------