i965/drm: Drop intel_chipset.h in favor of using gen_device_info.
[mesa.git] / bin / get-fixes-pick-list.sh
index 59bcae4f2dde42009c6157a8465b8ab3608ad522..75242a22829d7aebffdb110532b5893564776670 100755 (executable)
@@ -27,7 +27,7 @@ do
        # For each one try to extract the tag
        fixes_count=`git show $sha | grep -i "fixes:" | wc -l`
        if [ "x$fixes_count" != x1 ] ; then
-               echo WARNING: Commit $sha has nore than one Fixes tag
+               echo WARNING: Commit $sha has more than one Fixes tag
        fi
        fixes=`git show $sha | grep -i "fixes:" | head -n 1`
        # The following sed/cut combination is borrowed from GregKH