You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2014/03/13 16:25:55 UTC

svn commit: r1577197 - /subversion/trunk/Makefile.in

Author: julianfoad
Date: Thu Mar 13 15:25:55 2014
New Revision: 1577197

URL: http://svn.apache.org/r1577197
Log:
* Makefile.in
  (schema): Depend on 'mkdir-init', so as not to fail if schemas are the
    first thing I build in a clean out-of-tree build dir.

Modified:
    subversion/trunk/Makefile.in

Modified: subversion/trunk/Makefile.in
URL: http://svn.apache.org/viewvc/subversion/trunk/Makefile.in?rev=1577197&r1=1577196&r2=1577197&view=diff
==============================================================================
--- subversion/trunk/Makefile.in (original)
+++ subversion/trunk/Makefile.in Thu Mar 13 15:25:55 2014
@@ -684,7 +684,7 @@ doc-clean:
 	rm -rf $(abs_builddir)/doc/doxygen
 	rm -rf $(abs_builddir)/doc/javadoc
 
-# Converting from the .rnc XML shcemas to various other schema formats.
+# Converting from the .rnc XML schemas to various other schema formats.
 SCHEMAS_DTD = $(SCHEMA_DIR)/blame.dtd $(SCHEMA_DIR)/info.dtd \
               $(SCHEMA_DIR)/list.dtd $(SCHEMA_DIR)/log.dtd \
               $(SCHEMA_DIR)/status.dtd $(SCHEMA_DIR)/props.dtd
@@ -697,7 +697,7 @@ SCHEMAS_XSD = $(SCHEMA_DIR)/blame.xsd $(
               $(SCHEMA_DIR)/list.xsd $(SCHEMA_DIR)/log.xsd \
               $(SCHEMA_DIR)/status.xsd $(SCHEMA_DIR)/props.xsd
 
-schema: schema-rng schema-dtd schema-xsd
+schema: mkdir-init schema-rng schema-dtd schema-xsd
 
 schema-rng: $(SCHEMAS_RNG)
 schema-dtd: $(SCHEMAS_DTD)