summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorlenz@mysql.com <>2002-05-03 20:13:30 +0200
committerlenz@mysql.com <>2002-05-03 20:13:30 +0200
commit041238d7bd48eb570a918fedcf12468162c65808 (patch)
tree37e86e0e2876a73236770f055db0efe7c3b1ae5d /configure.in
parentc6aa76a58c99a594606a83e9b67fd23af4ad0ba5 (diff)
downloadmariadb-git-041238d7bd48eb570a918fedcf12468162c65808.tar.gz
Added "gnutar" to the TARs to check for, since this seems to be
how it's named on Mac OS X (thanks to Paul DuBois <paul@snake.net> for the hint)
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 5e593d17dc4..fc85a2070b1 100644
--- a/configure.in
+++ b/configure.in
@@ -364,9 +364,9 @@ AC_PATH_PROG(SED, sed, sed)
AC_PATH_PROG(CMP, cmp, cmp)
AC_PATH_PROG(CHMOD, chmod, chmod)
AC_PATH_PROG(HOSTNAME, hostname, hostname)
-# Check for a GNU tar named 'gtar', fall back to 'tar' otherwise
-# and hope that it's a GNU tar as well
-AC_CHECK_PROGS(TAR, gtar tar)
+# Check for a GNU tar named 'gtar', or 'gnutar' (MacOS X) and
+# fall back to 'tar' otherwise and hope that it's a GNU tar as well
+AC_CHECK_PROGS(TAR, gnutar gtar tar)
dnl We use a path for perl so the script startup works
dnl We make sure to use perl, not perl5, in hopes that the RPMs will
dnl not depend on the perl5 binary being installed (probably a bug in RPM)