diff options
author | 2012-10-20 01:32:19 +0400 | |
---|---|---|
committer | 2012-10-20 01:32:19 +0400 | |
commit | 8916f014f94b74d4f0edfe14fcae12ced549bd9a (patch) | |
tree | 60c276c38f0624eae097d5e7c632b28fa4868078 /app-doc/root-docs/files | |
parent | sci-physics/root: version bump (diff) | |
download | sci-8916f014f94b74d4f0edfe14fcae12ced549bd9a.tar.gz sci-8916f014f94b74d4f0edfe14fcae12ced549bd9a.tar.bz2 sci-8916f014f94b74d4f0edfe14fcae12ced549bd9a.zip |
app-doc/root-docs: version bump
Version bump in 5.32 and 5.34 branches.
Diffstat (limited to 'app-doc/root-docs/files')
-rw-r--r-- | app-doc/root-docs/files/root-docs-5.32-makehtml.patch | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/app-doc/root-docs/files/root-docs-5.32-makehtml.patch b/app-doc/root-docs/files/root-docs-5.32-makehtml.patch new file mode 100644 index 000000000..5cad0102a --- /dev/null +++ b/app-doc/root-docs/files/root-docs-5.32-makehtml.patch @@ -0,0 +1,44 @@ +--- root/Makefile.orig 2012-05-23 21:07:07.000000000 +0400 ++++ root/Makefile 2012-05-23 22:47:48.935680301 +0400 +@@ -1039,8 +1039,7 @@ + releasenotes: + @$(MAKERELNOTES) + +-html: $(ROOTEXE) changelog releasenotes +- @$(MAKELOGHTML) ++html: compiledata releasenotes + @$(MAKEHTML) + + # Use DESTDIR to set a sandbox prior to calling "make install", e.g.: +--- root/build/unix/makehtml.sh.orig 2012-06-18 06:44:59.000000000 +0400 ++++ root/build/unix/makehtml.sh 2012-06-18 19:39:41.262064654 +0400 +@@ -1,17 +1,17 @@ + #! /bin/sh + +-ROOT=bin/root.exe ++ROOT=root.exe + + dir=`pwd` + cd tutorials + # we need tutorials/hsimple.root + if [ ! -f hsimple.root ]; then +- $ROOT -l -b -q hsimple.C ++ $ROOT -l -b -q hsimple.C && exit 1 + fi + cd tree + # we need tutorials/tree/cernstaff.root + if [ ! -f cernstaff.root ]; then +- $ROOT -l -b -q cernbuild.C ++ $ROOT -l -b -q cernbuild.C || exit 1 + fi + cd $dir + +@@ -19,7 +19,7 @@ + echo "Generating doc in directory htmldoc/..." + echo "" + +-$ROOT -l <<makedoc ++$ROOT -l <<makedoc || exit 1 + THtml h; + h.LoadAllLibs(); + h.MakeAll(); |