shithub: libvpx

Download patch

ref: 6f3d7ecc6644ad91e6dee6d67f64237784042dba
parent: f86993f195ec0a82464fe25922e3857bc68b2ee5
author: Johann <johannkoenig@google.com>
date: Fri May 4 12:12:22 EDT 2012

Be explicit about 'in-place'

On darwin, sed expects an argument for '-i'. Make it empty.

Change-Id: I5dc6cdf667a754b2624f1767eb6e8025df48e308

--- a/tools/ftfy.sh
+++ b/tools/ftfy.sh
@@ -34,7 +34,7 @@
          --align-pointer=name \
          --indent-preprocessor --convert-tabs --indent-labels \
          --suffix=none --quiet "$@"
-  sed -i 's/[[:space:]]\{1,\},/,/g' "$@"
+  sed -i "" 's/[[:space:]]\{1,\},/,/g' "$@"
 }
 
 
--