Revision: 6593 Author: ek.kato Date: Sun Jul 25 23:08:02 2010 Log: * configure.ac (libedit_path) : Bug fix.
http://code.google.com/p/uim/source/detail?r=6593 Modified: /trunk/configure.ac ======================================= --- /trunk/configure.ac Tue Jul 20 04:39:55 2010 +++ /trunk/configure.ac Sun Jul 25 23:08:02 2010 @@ -1110,7 +1110,11 @@ [ if test "x$with_libedit" != "xno"; then use_libedit="yes" - libedit_path="$withval" + if test "x$withval" = "xyes"; then + libedit_path=/usr + else + libedit_path="$withval" + fi else use_libedit="no" fi
