ffmpeg: replace tabulators with spaces for consistency
authorPaul Menzel <paulepanter@users.sourceforge.net>
Fri, 17 Dec 2010 12:27:02 +0000 (13:27 +0100)
committerKhem Raj <raj.khem@gmail.com>
Sat, 25 Dec 2010 11:16:48 +0000 (03:16 -0800)
`omapfbplay*.bb` recipes use tabulators consistently and therefore they are not changed.

Use

grep -e $'\t' ffmpeg_*bb

to find tabulators in Bash [1].

[1] http://www.claudiokuenzler.com/blog/99/tabulator-in-bash

Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
recipes/ffmpeg/ffmpeg_0.4.9-pre1.bb
recipes/ffmpeg/ffmpeg_0.5.bb
recipes/ffmpeg/ffmpeg_git.bb
recipes/ffmpeg/ffmpeg_svn.bb

index 1ac8610..e6a7abe 100644 (file)
@@ -6,7 +6,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/ffmpeg/ffmpeg-${PV}.tar.gz \
            file://configure.patch \
            file://gcc4.patch \
            file://soname.patch \
-          file://Makefile-avformat-use-LDFLAGS.patch \
+           file://Makefile-avformat-use-LDFLAGS.patch \
            file://Makefile-add-liblame.patch \
            file://install-must-not-strip.patch \
           "
index 07af21d..f3a6d21 100644 (file)
@@ -8,9 +8,9 @@ DEFAULT_PREFERENCE = "1"
 
 SRCREV_libswscale = "b2e1c8222eeef74b0ca8053b400957dd69e18e4d"
 SRC_URI = "http://ffmpeg.org/releases/ffmpeg-${PV}.tar.bz2 \
-          file://armv4.patch \
+       file://armv4.patch \
        file://ffmpeg-arm-update.diff \
-         "
+"
 
 #S = "${WORKDIR}/git"
 B = "${S}/build.${HOST_SYS}.${TARGET_SYS}"
@@ -57,7 +57,7 @@ do_configure() {
         mkdir -p ${B}
         cd ${B}
         ${S}/configure ${EXTRA_OECONF}
-               sed -i -e s:Os:O4:g ${B}/config.h
+        sed -i -e s:Os:O4:g ${B}/config.h
 }
 
 
index 5c84ea7..231b9cb 100644 (file)
@@ -57,13 +57,13 @@ EXTRA_OECONF = " \
 do_configure() {
         sed -i -e s:'check_cflags -std=c99'::g ${S}/configure
         cd ${S}
-       git clone git://git.mplayerhq.hu/libswscale || true
-       cd libswscale
-       git checkout ${SRCREV_libswscale} || true
-       cd ${S}
+        git clone git://git.mplayerhq.hu/libswscale || true
+        cd libswscale
+        git checkout ${SRCREV_libswscale} || true
+        cd ${S}
         mkdir -p ${B}
         cd ${B}
         ${S}/configure ${EXTRA_OECONF}
-               sed -i -e s:Os:O4:g ${B}/config.h
+        sed -i -e s:Os:O4:g ${B}/config.h
 }
 
index 573de03..ea0d757 100644 (file)
@@ -56,6 +56,6 @@ do_configure() {
         mkdir -p ${B}
         cd ${B}
         ${S}/configure ${EXTRA_OECONF}
-               sed -i -e s:Os:O4:g ${B}/config.h
+        sed -i -e s:Os:O4:g ${B}/config.h
 }