Author: arfrever
Date: Sat Jun 11 00:38:04 2011
New Revision: 1134493
URL: http://svn.apache.org/viewvc?rev=1134493&view=rev
Log:
Follow-up to r1134075:
* tools/dist/construct-rolling-environment.sh: Disable support for PCRE in SWIG
to work around build failure on misconfigured buildbot.
Modified:
subversion/trunk/tools/dist/construct-rolling-environment.sh
Modified: subversion/trunk/tools/dist/construct-rolling-environment.sh
URL:
http://svn.apache.org/viewvc/subversion/trunk/tools/dist/construct-rolling-environment.sh?rev=1134493&r1=1134492&r2=1134493&view=diff
==============================================================================
--- subversion/trunk/tools/dist/construct-rolling-environment.sh (original)
+++ subversion/trunk/tools/dist/construct-rolling-environment.sh Sat Jun 11
00:38:04 2011
@@ -98,7 +98,7 @@ create_prefix() {
tar zxvf $SWIG.tar.gz
cd $SWIG
- ./configure --prefix=$PREFIX
+ ./configure --prefix=$PREFIX --without-pcre
make
make install
cd ..