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 2014/03/13 16:02:09 UTC

svn commit: r1577185 - /subversion/trunk/tools/dev/unix-build/Makefile.svn

Author: stsp
Date: Thu Mar 13 15:02:08 2014
New Revision: 1577185

URL: http://svn.apache.org/r1577185
Log:
* tools/dev/unix-build/Makefile.svn: In my custom build script,
   make some build flags more easily accessible from the command
   line using shorter names.

Modified:
    subversion/trunk/tools/dev/unix-build/Makefile.svn

Modified: subversion/trunk/tools/dev/unix-build/Makefile.svn
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/unix-build/Makefile.svn?rev=1577185&r1=1577184&r2=1577185&view=diff
==============================================================================
--- subversion/trunk/tools/dev/unix-build/Makefile.svn (original)
+++ subversion/trunk/tools/dev/unix-build/Makefile.svn Thu Mar 13 15:02:08 2014
@@ -29,13 +29,15 @@
 #   | the bot's health after making changes to this file.          |
 #   |______________________________________________________________|
 
-ENABLE_PERL_BINDINGS ?= yes
+PERL ?= yes
+ENABLE_PERL_BINDINGS = $(PERL)
 THREADING ?= yes
 ifeq ($(THREADING),yes)
-ENABLE_JAVA_BINDINGS ?= yes
+JAVA ?= yes
 else
-ENABLE_JAVA_BINDINGS ?= no
+JAVA ?= no
 endif
+ENABLE_JAVA_BINDINGS = $(JAVA)
 USE_APR_ICONV ?= no # set to yes to use APR iconv instead of GNU iconv
 PARALLEL ?= 1
 CLEANUP ?= 1