You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2018/01/26 09:59:09 UTC

svn commit: r1822264 - /subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnbuild.sh

Author: stsp
Date: Fri Jan 26 09:59:08 2018
New Revision: 1822264

URL: http://svn.apache.org/viewvc?rev=1822264&view=rev
Log:
* tools/buildbot/slaves/bb-openbsd/svnbuild.sh: Create Makefile symlink,
  in case svnclean.sh didn't create one for some reason (as seen in
  svn-bb-openbsd build number 0).

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=1822264&r1=1822263&r2=1822264&view=diff
==============================================================================
--- subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnbuild.sh (original)
+++ subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnbuild.sh Fri Jan 26 09:59:08 2018
@@ -24,4 +24,5 @@ set -x
 
 url="$(svn info --show-item url)"
 branch="${url##*/}"
+(test -h ../GNUmakefile || ln -s ../unix-build/Makefile.svn ../GNUmakefile)
 (cd .. && gmake BRANCH="$branch" THREADING="no" JAVA="no" MAKE_JOBS=8)