amd/common: Restore v4i32 suffix for llvm.SI.load.const intrinsic
[mesa.git] / bin / shortlog_mesa.sh
index 1e1ef26e2661def8b3c8afba2c43e219eb840044..c9a42972368c7a351d6e1e57499d56878de4f375 100755 (executable)
@@ -2,22 +2,28 @@
 
 # This script is used to generate the list of changes that
 # appears in the release notes files, with HTML formatting.
+#
+# Usage examples:
+#
+# $ bin/shortlog_mesa.sh mesa-9.0.2..mesa-9.0.3
+# $ bin/shortlog_mesa.sh mesa-9.0.2..mesa-9.0.3 > changes
+# $ bin/shortlog_mesa.sh mesa-9.0.2..mesa-9.0.3 | tee changes
 
 
-typeset -i in_log=0
+in_log=0
 
 git shortlog $* | while read l
 do
     if [ $in_log -eq 0 ]; then
-       echo '<p>'$l
+       echo '<p>'$l'</p>'
        echo '<ul>'
        in_log=1
     elif echo "$l" | egrep -q '^$' ; then
-       echo '</ul></p>'
+       echo '</ul>'
        echo
        in_log=0
     else
-        mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&amp;/g;s/</\&lt/g;s/>/\&gt;/g')
+        mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&amp;/g;s/</\&lt;/g;s/>/\&gt;/g')
        echo '  <li>'${mesg}'</li>'
     fi
 done