[Rt-commit] rt branch, 4.0/install-docs, created. rt-4.0.1rc1-35-g54f7ca5

Kevin Falcone falcone at bestpractical.com
Wed Jun 15 13:13:11 EDT 2011


The branch, 4.0/install-docs has been created
        at  54f7ca556f6590bf96771bbd02ec10d8588e49e4 (commit)

- Log -----------------------------------------------------------------
commit 54f7ca556f6590bf96771bbd02ec10d8588e49e4
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Wed Jun 15 13:12:16 2011 -0400

    Install everything in the docs/ directory
    
    Previously we only installed README.
    Many folks remove their source tarball after installing and don't
    realize we've included helpful documentation.

diff --git a/Makefile.in b/Makefile.in
index ce36e75..171db77 100755
--- a/Makefile.in
+++ b/Makefile.in
@@ -406,6 +406,12 @@ doc-install:
 @COMMENT_INPLACE_LAYOUT@	# RT 3.0.0 - RT 3.0.2 would accidentally create a file instead of a dir
 @COMMENT_INPLACE_LAYOUT@	-[ -f $(DESTDIR)$(RT_DOC_PATH) ] && rm $(DESTDIR)$(RT_DOC_PATH) 
 @COMMENT_INPLACE_LAYOUT@	[ -d $(DESTDIR)$(RT_DOC_PATH) ] || $(INSTALL) -m 0755 -d $(DESTDIR)$(RT_DOC_PATH)
+ at COMMENT_INPLACE_LAYOUT@	-( cd docs && find . -type d -print ) | while read dir ; do \
+ at COMMENT_INPLACE_LAYOUT@	    $(INSTALL) -m 0755 -d "$(DESTDIR)$(RT_DOC_PATH)/$$dir" ; \
+ at COMMENT_INPLACE_LAYOUT@	done
+ at COMMENT_INPLACE_LAYOUT@	-( cd docs && find . -type f -print ) | while read file ; do \
+ at COMMENT_INPLACE_LAYOUT@	    $(INSTALL) -m 0644 "docs/$$file" "$(DESTDIR)$(RT_DOC_PATH)/$$file" ; \
+ at COMMENT_INPLACE_LAYOUT@	done
 @COMMENT_INPLACE_LAYOUT@	-$(INSTALL) -m 0644 ./README $(DESTDIR)$(RT_DOC_PATH)/
 
 

-----------------------------------------------------------------------


More information about the Rt-commit mailing list