This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug bootstrap/26829] broken classpath install (missed tools.zip)
- From: "pluto at agmk dot net" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 23 Mar 2006 18:53:38 -0000
- Subject: [Bug bootstrap/26829] broken classpath install (missed tools.zip)
- References: <bug-26829-7667@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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