tests/debugfs_reader: fight bashism
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Mon, 31 Oct 2011 16:40:37 +0000 (17:40 +0100)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Mon, 31 Oct 2011 16:40:37 +0000 (17:40 +0100)
debian's dash doesn't like this.

Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
tests/debugfs_reader

index 8874185..adb1e3c 100755 (executable)
@@ -22,6 +22,6 @@ if [ $i915_path = "x" ] ; then
 fi
 
 # read everything we can
-cat $i915_path/* >& /dev/null
+cat $i915_path/* > /dev/null 2>&1 
 
 exit 0