You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rp...@apache.org on 2009/05/31 13:53:31 UTC

svn commit: r780413 - /apr/apr-util/branches/1.3.x/test/Makefile.in

Author: rpluem
Date: Sun May 31 11:53:31 2009
New Revision: 780413

URL: http://svn.apache.org/viewvc?rev=780413&view=rev
Log:
Merge r780411 from trunk:

* Ensure that the dbm drivers are also contained in the shlib path variable.

Submitted by: Stefan Fritsch <sf sfritsch.de>
Reviewed by: rpluem

Modified:
    apr/apr-util/branches/1.3.x/test/Makefile.in

Modified: apr/apr-util/branches/1.3.x/test/Makefile.in
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.3.x/test/Makefile.in?rev=780413&r1=780412&r2=780413&view=diff
==============================================================================
--- apr/apr-util/branches/1.3.x/test/Makefile.in (original)
+++ apr/apr-util/branches/1.3.x/test/Makefile.in Sun May 31 11:53:31 2009
@@ -63,7 +63,7 @@
 	        if test "$$prog" = 'dbd'; then \
 			for driver in none @apu_dbd_tests@; do \
 				if test "$$driver" != 'none'; then \
-					@apr_shlibpath_var@="`echo "../dbd/.libs:../ldap/.libs:$$@apr_shlibpath_var@" | sed -e 's/::*$$//'`" \
+					@apr_shlibpath_var@="`echo "../dbm/.libs:../dbd/.libs:../ldap/.libs:$$@apr_shlibpath_var@" | sed -e 's/::*$$//'`" \
 					./$$prog $$driver; \
 					status=$$?; \
 					if test $$status != 0; then \
@@ -73,7 +73,7 @@
 				fi; \
 			done; \
 	        else \
-			@apr_shlibpath_var@="`echo "../dbd/.libs:../ldap/.libs:$$@apr_shlibpath_var@" | sed -e 's/::*$$//'`" \
+			@apr_shlibpath_var@="`echo "../dbm/.libs:../dbd/.libs:../ldap/.libs:$$@apr_shlibpath_var@" | sed -e 's/::*$$//'`" \
 			./$$prog; \
 			status=$$?; \
 			if test $$status != 0; then \