summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2008-09-14 16:49:41 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2008-09-14 16:49:41 +0000
commit4fd309d2e65690e08695dd1c35f632602ded8fbd (patch)
tree3361ef87cf70a59933407c521e13730b5b0abee4 /m4
parentafee9db31a894a1bae0af9df745d359427e7163b (diff)
downloadclasspath-4fd309d2e65690e08695dd1c35f632602ded8fbd.tar.gz
2008-09-14 Andrew John Hughes <gnu_andrew@member.fsf.org>
* examples/Makefile.am: Check lib directly as well as glibj.zip for boot classes. * m4/acinclude.m4: Only require the class files to be built to allow the tools and examples to be built, not the installation of glibj.zip. * tools/Makefile.am: Check lib directly as well as glibj.zip for boot classes.
Diffstat (limited to 'm4')
-rw-r--r--m4/acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/acinclude.m4 b/m4/acinclude.m4
index 5b9f5d247..172f54a58 100644
--- a/m4/acinclude.m4
+++ b/m4/acinclude.m4
@@ -138,7 +138,7 @@ AC_DEFUN([CLASSPATH_WITH_GLIBJ],
*) AC_MSG_ERROR(bad value ${enableval} for --enable-examples) ;;
esac],
[EXAMPLESDIR="examples"])
- if test "x${use_zip}" = xno && test "x${install_class_files}" = xno; then
+ if test "x${build_class_files}" = xno; then
EXAMPLESDIR=""
fi
AC_SUBST(EXAMPLESDIR)
@@ -151,7 +151,7 @@ AC_DEFUN([CLASSPATH_WITH_GLIBJ],
*) AC_MSG_ERROR(bad value ${enableval} for --enable-tools) ;;
esac],
[TOOLSDIR="tools"])
- if test "x${use_zip}" = xno && test "x${install_class_files}" = xno; then
+ if test "x${build_class_files}" = xno; then
TOOLSDIR=""
fi
AC_SUBST(TOOLSDIR)