From: Antoine Verheijen Date: Mon, 3 May 2010 20:32:13 +0000 (-0600) Subject: Fix pattern to detect i386-based OpenBSD system type X-Git-Tag: openafs-devel-1_5_75~326 X-Git-Url: http://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=0ec2239b730bc9b1f8f819ef398d24bb7f1dff4e Fix pattern to detect i386-based OpenBSD system type When the pattern to detect OpenBSD system types (via MKAFS_OSTYPE) was split into two separate ones for amd64 and i386 architectures, the pattern for i386-based systems was not set quite right. As a result, i386-based OpenBSD systems are no longer detected properly at this stage, resulting in an error of "cannot find input file: src/libafs/MakefileProto..in" during configure. This patch corrects the pattern. Change-Id: I67079af74117fa3cdc765f19944e23223709ae6b Reviewed-on: http://gerrit.openafs.org/1897 Reviewed-by: Simon Wilkinson Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- diff --git a/acinclude.m4 b/acinclude.m4 index 9cf3a60..c607830 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -438,7 +438,7 @@ case $system in MKAFS_OSTYPE=OBSD AC_MSG_RESULT(amd64_obsd) ;; - i386-openbsd*) + i386-*-openbsd*) MKAFS_OSTYPE=OBSD AC_MSG_RESULT(i386_obsd) ;;