The following error may be returned when you execute SYBASE.csh installed by Sybase IQ 12.6:
Unmatched . "
To correct this problem, modify the SYBASE.csh file. The SYBASE.csh file is missing " (a double quote) in the following section of the file:
CASE AIX: if ( $?LIBPATH == 0 ) setenv LIBPATH " "
setenv LIBPATH ${SYB_LIB}:${LIBPATH}"
breaksw
Add the " in the second line before ${SYB_LIB} as
follows:
CASE AIX: if ( $?LIBPATH == 0 ) setenv LIBPATH " "
setenv LIBPATH "${SYB_LIB}:${LIBPATH}"
breaksw
| Copyright © 2005. Sybase Inc. All rights reserved. |
|
|