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 <shadow@dementia.org>
Tested-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
Russ Allbery 2010-05-06 12:30:23 -07:00 committed by Derrick Brashear
parent b811e4f91e
commit fd9ab5cb7c

View File

@ -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*)