Author: stsp
Date: Tue May 29 15:15:52 2012
New Revision: 1343772
URL: http://svn.apache.org/viewvc?rev=1343772&view=rev
Log:
* bb-openbsd/svnbuild.sh: Set JAVA_HOME so the configure script can
find the JDK. No functional change since the bb-openbsd bot still uses
a non-threaded build which means JavaHL cannot be built. But this is
likely to change in the future when OpenBSD 5.2 is released.
Modified:
subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnbuild.sh
Modified: subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnbuild.sh
URL:
http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnbuild.sh?rev=1343772&r1=1343771&r2=1343772&view=diff
==============================================================================
--- subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnbuild.sh (original)
+++ subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnbuild.sh Tue May 29
15:15:52 2012
@@ -22,5 +22,7 @@
set -e
set -x
+export JAVA_HOME=/usr/local/jdk-1.7.0
+
branch="$(basename $(svn info . | grep ^URL | cut -d' ' -f2))"
(cd .. && gmake BRANCH="$branch" THREADING="no")