Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
deprecate SIMIX_process_{a,de}tach
[simgrid.git] / docs / Build.sh
index c7bfa41..4096cfd 100755 (executable)
@@ -32,16 +32,14 @@ PYTHONPATH=../lib sphinx-build -M html source build ${SPHINXOPTS}
 
 set +x
 
-cat source/img/graphical-toc.svg \
- | perl -pe 's/(xlink:href="http)/target="_top" $1/' \
- | perl -pe 's/(xlink:href=".*?.html)/target="_top" $1/' \
- > build/html/graphical-toc.svg
+perl -pe 's/(xlink:href="(?:http|.*\.html))/target="_top" $1/' \
+     source/img/graphical-toc.svg > build/html/graphical-toc.svg
 
 echo "List of missing references:"
-for f in `(grep '<name>' build/xml/msg_8h.xml; \
-           grep '<name>' build/xml/namespacesimgrid_1_1s4u.xml; \
-          grep '<innerclass refid=' build/xml/namespacesimgrid_1_1s4u.xml ; \
-          ) |sed 's/<[^>]*>//g'|sort` 
+for f in $( (grep '<name>' build/xml/msg_8h.xml; \
+             grep '<name>' build/xml/namespacesimgrid_1_1s4u.xml; \
+             grep '<innerclass refid=' build/xml/namespacesimgrid_1_1s4u.xml ; \
+            ) | sed 's/<[^>]*>//g' | sort )
 do
 
   if grep $f source/*rst | grep -q '.. doxygen[^::]*:: '"$f"'$' ||
@@ -54,4 +52,4 @@ do
       echo "$f"
     fi
   fi
-done
\ No newline at end of file
+done