From: Russ Allbery Date: Thu, 6 May 2010 19:30:23 +0000 (-0700) Subject: Include common param file for Linux alpha builds X-Git-Tag: openafs-devel-1_5_75~305 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=fd9ab5cb7c7346ad443072767a360d902578e87b;p=packages%2Fo%2Fopenafs.git Include common param file for Linux alpha builds The sysname for Linux Alpha is alpha_linux_26 (or 24 or 22) with an extra underscore before the version, unlike all the other Linux sysnames. Allow for that case when deciding whether to include the common Linux param header. Change-Id: Icab3a9214d0bd020b846734cce27da6c1bdeab56 Reviewed-on: http://gerrit.openafs.org/1915 Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- diff --git a/acinclude.m4 b/acinclude.m4 index 7f656d09f..c83f164f7 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -734,6 +734,10 @@ case $AFS_SYSNAME in *_linux22) AFS_PARAM_COMMON=param.linux22.h ;; *_linux24) AFS_PARAM_COMMON=param.linux24.h ;; *_linux26) AFS_PARAM_COMMON=param.linux26.h ;; +# Linux alpha adds an extra underscore for no good reason. + *_linux_22) AFS_PARAM_COMMON=param.linux22.h ;; + *_linux_24) AFS_PARAM_COMMON=param.linux24.h ;; + *_linux_26) AFS_PARAM_COMMON=param.linux26.h ;; esac case $AFS_SYSNAME in *_linux* | *_umlinux*)