------- Comment #5 from pluto at agmk dot net 2006-03-23 18:53 ------- (In reply to comment #4) > Can you try configuring with an absolute path instead of a relative one? >
here's a fix. Index: trunk/libjava/classpath/configure.ac =================================================================== --- trunk/libjava/classpath/configure.ac (wersja 112328) +++ trunk/libjava/classpath/configure.ac (kopia robocza) @@ -552,6 +552,10 @@ dnl and zip, however GNU provides both so it should be okay dnl ----------------------------------------------------------- AC_PATH_PROG(FIND, find) +AC_PATH_PROG(ZIP, zip) +if test "x$ZIP" = x; then + AC_MSG_ERROR([zip is required]) +fi dnl ----------------------------------------------------------- dnl Specify what to install (install only glibj.zip by default) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26829