You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rj...@apache.org on 2014/03/17 16:08:15 UTC

svn commit: r1578420 - /apr/apr/trunk/Makefile.in

Author: rjung
Date: Mon Mar 17 15:08:15 2014
New Revision: 1578420

URL: http://svn.apache.org/r1578420
Log:
Fix another "out of tree build" problem
for gen_test_char when using an old libtool.

Modified:
    apr/apr/trunk/Makefile.in

Modified: apr/apr/trunk/Makefile.in
URL: http://svn.apache.org/viewvc/apr/apr/trunk/Makefile.in?rev=1578420&r1=1578419&r2=1578420&view=diff
==============================================================================
--- apr/apr/trunk/Makefile.in (original)
+++ apr/apr/trunk/Makefile.in Mon Mar 17 15:08:15 2014
@@ -161,7 +161,11 @@ check: $(TARGET_LIB)
 etags:
 	etags `find . -name '*.[ch]'`
 
+make_tools_dir:
+	$(APR_MKDIR) tools
+
 OBJECTS_gen_test_char = tools/gen_test_char.lo $(LOCAL_LIBS)
+tools/gen_test_char.lo: make_tools_dir
 tools/gen_test_char@EXEEXT@: $(OBJECTS_gen_test_char)
 	$(LINK_PROG) $(OBJECTS_gen_test_char) $(ALL_LIBS)