Try to fix the shpinx build

llvm-svn: 358154
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst
index 6982e96..fb9ee72 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.rst
@@ -730,7 +730,7 @@
 
 Here is the code:
 
-.. literalinclude:: ../../examples/Kaleidoscope/Chapter2/toy.cpp
+.. literalinclude:: ../../../examples/Kaleidoscope/Chapter2/toy.cpp
    :language: c++
 
 `Next: Implementing Code Generation to LLVM IR <LangImpl03.html>`_
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
index da465ef..3253c9d 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
@@ -561,7 +561,7 @@
 
 Here is the code:
 
-.. literalinclude:: ../../examples/Kaleidoscope/Chapter3/toy.cpp
+.. literalinclude:: ../../../examples/Kaleidoscope/Chapter3/toy.cpp
    :language: c++
 
 `Next: Adding JIT and Optimizer Support <LangImpl04.html>`_
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst
index bdd21d6..8389e6c 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.rst
@@ -652,7 +652,7 @@
 
 Here is the code:
 
-.. literalinclude:: ../../examples/Kaleidoscope/Chapter4/toy.cpp
+.. literalinclude:: ../../../examples/Kaleidoscope/Chapter4/toy.cpp
    :language: c++
 
 `Next: Extending the language: control flow <LangImpl05.html>`_
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst
index dad2489..b9c99d8 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst
@@ -807,7 +807,7 @@
 
 Here is the code:
 
-.. literalinclude:: ../../examples/Kaleidoscope/Chapter5/toy.cpp
+.. literalinclude:: ../../../examples/Kaleidoscope/Chapter5/toy.cpp
    :language: c++
 
 `Next: Extending the language: user-defined operators <LangImpl06.html>`_
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst
index 2a9f4c6..e509788 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst
@@ -760,7 +760,7 @@
 
 Here is the code:
 
-.. literalinclude:: ../../examples/Kaleidoscope/Chapter6/toy.cpp
+.. literalinclude:: ../../../examples/Kaleidoscope/Chapter6/toy.cpp
    :language: c++
 
 `Next: Extending the language: mutable variables / SSA
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst
index 582645f4..c3a862c 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst
@@ -876,7 +876,7 @@
 
 Here is the code:
 
-.. literalinclude:: ../../examples/Kaleidoscope/Chapter7/toy.cpp
+.. literalinclude:: ../../../examples/Kaleidoscope/Chapter7/toy.cpp
    :language: c++
 
 `Next: Compiling to Object Code <LangImpl08.html>`_
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst
index da4e60f..b6e9cbf 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl08.rst
@@ -212,7 +212,7 @@
 Full Code Listing
 =================
 
-.. literalinclude:: ../../examples/Kaleidoscope/Chapter8/toy.cpp
+.. literalinclude:: ../../../examples/Kaleidoscope/Chapter8/toy.cpp
    :language: c++
 
 `Next: Adding Debug Information <LangImpl09.html>`_
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst
index d81f9fa..2f10ac9 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl09.rst
@@ -458,7 +458,7 @@
 
 Here is the code:
 
-.. literalinclude:: ../../examples/Kaleidoscope/Chapter9/toy.cpp
+.. literalinclude:: ../../../examples/Kaleidoscope/Chapter9/toy.cpp
    :language: c++
 
 `Next: Conclusion and other useful LLVM tidbits <LangImpl10.html>`_