| 249 echo ok |
249 echo ok |
| 250 else |
250 else |
| 251 # try to detect the correct libdir on our own, except it was changed by the user |
251 # try to detect the correct libdir on our own, except it was changed by the user |
| 252 if test "$libdir" = '${exec_prefix}/lib'; then |
252 if test "$libdir" = '${exec_prefix}/lib'; then |
| 253 if [ "$OS" = "SunOS" ]; then |
253 if [ "$OS" = "SunOS" ]; then |
| 254 test -d "${exec_prefix}/lib/amd64" && libdir='${exec_prefix}/lib/amd64' |
254 test -d "${exec_prefix}/lib/64" && libdir='${exec_prefix}/lib/64' |
| 255 else |
255 else |
| 256 # check if the standard libdir even exists |
256 # check if the standard libdir even exists |
| 257 if test -d "${exec_prefix}/lib" ; then |
257 if test -d "${exec_prefix}/lib" ; then |
| 258 : |
258 : |
| 259 else |
259 else |