diff options
author | 2013-05-29 01:24:58 +0400 | |
---|---|---|
committer | 2013-05-29 01:24:58 +0400 | |
commit | 023bddbe83308ebcb8f0ba55cf9e18715bf466da (patch) | |
tree | efc416216a19e56c12b4c6e17d9326f12740619d /app-doc/root-docs/files | |
parent | Merge branch 'master' of git+ssh://git.overlays.gentoo.org/proj/sci (diff) | |
download | sci-023bddbe83308ebcb8f0ba55cf9e18715bf466da.tar.gz sci-023bddbe83308ebcb8f0ba55cf9e18715bf466da.tar.bz2 sci-023bddbe83308ebcb8f0ba55cf9e18715bf466da.zip |
root-docs: fix sandbox access violation
See bug 471236. Addpredict is now used to catch possible HW device
access.
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, 0 insertions, 44 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 deleted file mode 100644 index 5cad0102a..000000000 --- a/app-doc/root-docs/files/root-docs-5.32-makehtml.patch +++ /dev/null @@ -1,44 +0,0 @@ ---- 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(); |