From: <sg...@us...> - 2003-08-31 21:38:38
|
Update of /cvsroot/libfunutil/libfunutil/toc/tests In directory sc8-pr-cvs1:/tmp/cvs-serv1045/toc/tests Modified Files: readline.sh Log Message: silence the ncurses check if we don't end up needing it. Index: readline.sh =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/toc/tests/readline.sh,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- readline.sh 29 Aug 2003 11:47:07 -0000 1.7 +++ readline.sh 31 Aug 2003 21:38:35 -0000 1.8 @@ -49,11 +49,11 @@ LIBREADLINE_LDADD="-lreadline" nc=-lncurses if toc_find_failok nm > /dev/null; then - echo -n "? Do we also need to link against $nc? ... " +# echo -n "? Do we also need to link against $nc? ... " if ${TOC_FIND_RESULT} ${lib} | grep -q tgoto; then - echo "It doesn't seem so." + true else - echo "It seems so. Adding $nc." + echo "It seems we also need to link against $n." LIBREADLINE_LDADD="${LIBREADLINE_LDADD} $nc" fi else @@ -64,5 +64,5 @@ configure_with_libreadline=1 toc_add_config_h HAVE_READLINE=1 toc_add_make configure_with_libreadline=1 -toc_add_make LIBREADLINE_LDADD=${LIBREADLINE_LDADD} +toc_add_make LIBREADLINE_LDADD="${LIBREADLINE_LDADD}" return 0 |