diff options
author | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-02-06 14:36:54 +0000 |
---|---|---|
committer | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-02-06 14:36:54 +0000 |
commit | dab7110f682e5b3151edd9f8ed6599199c1b2dde (patch) | |
tree | 1dbe1a0b9330f9281ed3b7cf107243dd11eca494 /maintainer-scripts | |
parent | 42231db5d6d830cc29021561dec3a2487c83292e (diff) | |
download | gcc-dab7110f682e5b3151edd9f8ed6599199c1b2dde.tar.gz |
Fix 404 in "Show Source" in jit docs
maintainer-scripts/ChangeLog:
PR jit/64257
* update_web_docs_svn: When copying up files for the built jit
documentation, also copy up .txt files.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@220479 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'maintainer-scripts')
-rw-r--r-- | maintainer-scripts/ChangeLog | 6 | ||||
-rwxr-xr-x | maintainer-scripts/update_web_docs_svn | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog index f80213902cc..0485bdf0bd1 100644 --- a/maintainer-scripts/ChangeLog +++ b/maintainer-scripts/ChangeLog @@ -1,3 +1,9 @@ +2015-02-06 David Malcolm <dmalcolm@redhat.com> + + PR jit/64257 + * update_web_docs_svn: When copying up files for the built jit + documentation, also copy up .txt files. + 2015-02-04 David Malcolm <dmalcolm@redhat.com> PR jit/64257 diff --git a/maintainer-scripts/update_web_docs_svn b/maintainer-scripts/update_web_docs_svn index 2544211e681..7832eed2ccb 100755 --- a/maintainer-scripts/update_web_docs_svn +++ b/maintainer-scripts/update_web_docs_svn @@ -233,10 +233,12 @@ done # Again, the jit is a special case, with nested subdirectories # below "jit", and with some non-HTML files (.png images from us, -# plus .css and .js supplied by sphinx). +# plus .css and .js supplied by sphinx, and source files, renamed +# from .rst to .txt). find jit \ -name "*.html" -o -name "*.png" \ - -o -name "*.css" -o -name "*.js" | + -o -name "*.css" -o -name "*.js" \ + -o -name "*.txt" | while read file ; do # Note that $file here will contain path fragments beginning # with "jit/", e.g. "jit/cp/topics/functions.html" |