[Libsysio-commit] HEAD: libsysio configure.in
Brought to you by:
lward
From: Ruth K. <rk...@us...> - 2003-10-23 18:29:32
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1:/tmp/cvs-serv23724 Modified Files: configure.in Log Message: older bash on alpha RH6, no substring. and slight mod to cplant_tests Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.10 retrieving revision 1.11 diff -u -w -b -B -p -r1.10 -r1.11 --- configure.in 10 Oct 2003 18:50:30 -0000 1.10 +++ configure.in 23 Oct 2003 16:06:13 -0000 1.11 @@ -89,8 +89,7 @@ AC_ARG_WITH(cplant_tests, [ case "${withval}" in yes) AC_MSG_ERROR(need path to compiler for --with-cplant-tests);; no) with_cplant_tests=no;; - *) CPLANT_PATH=${withval} - CC=${CPLANT_PATH}/cplant-cc + *) CC=${withval} CCDEPMODE=${CC} CPP="${CC} -E" AC_CHECK_FILE(${CC}, @@ -172,8 +171,8 @@ fi # AC_MSG_CHECKING(for alpha linux) alpha_linux_env=no -if test ${machine:0:5} = alpha && \ - test ${os:0:5} = linux; then +if test `expr ${machine} : "alpha"` = 5 && \ + test `expr ${os} : "linux"` = 5; then alpha_linux_env=yes AC_DEFINE(ALPHA_LINUX) fi |