Author: davisp
Date: Tue Aug 18 23:26:56 2009
New Revision: 805626

URL: http://svn.apache.org/viewvc?rev=805626&view=rev
Log:
Addresses Noah's remarks on COUCHDB-471 by using $(top_builddir) instead of
$(top_srcdir)


Modified:
    couchdb/trunk/Makefile.am

Modified: couchdb/trunk/Makefile.am
URL: 
http://svn.apache.org/viewvc/couchdb/trunk/Makefile.am?rev=805626&r1=805625&r2=805626&view=diff
==============================================================================
--- couchdb/trunk/Makefile.am (original)
+++ couchdb/trunk/Makefile.am Tue Aug 18 23:26:56 2009
@@ -49,11 +49,11 @@
 dev: all
        @echo "This command is intended for developers to use;"
        @echo "it creates development ini files as well as a"
-       @echo "./tmp structure for development runtime files."
+       @echo "$(top_builddir)/tmp structure for development runtime files."
        @echo "Use ./utils/run to launch CouchDB from the source tree."
-       mkdir -p ./tmp/lib
-       mkdir -p ./tmp/log
-       mkdir -p ./tmp/run
+       mkdir -p $(top_builddir)/tmp/lib
+       mkdir -p $(top_builddir)/tmp/log
+       mkdir -p $(top_builddir)/tmp/run
 
 .PHONY: local-clean
 local-clean: maintainer-clean


Reply via email to