<div dir="ltr">This fix is not completely correct as the "bins" category expect the name of a  binary and it's then replaced with bin/$name$extesion. It's intended to be used for binaries distributed in the bin folder where the extension changes in Windows with an extra ".exe" but It can't be used for scripts and it should not include the bin folder itself, just the name of the executable without the extension.<div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">2014-12-01 12:40 GMT+01:00 Sebastian Dröge <span dir="ltr"><<a href="mailto:slomo@kemper.freedesktop.org" target="_blank">slomo@kemper.freedesktop.org</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Module: cerbero<br>
Branch: master<br>
Commit: f0d02fbed624b070f1a38abbc8f006efd4ace35b<br>
URL:    <a href="http://cgit.freedesktop.org/gstreamer/cerbero/commit/?id=f0d02fbed624b070f1a38abbc8f006efd4ace35b" target="_blank">http://cgit.freedesktop.org/gstreamer/cerbero/commit/?id=f0d02fbed624b070f1a38abbc8f006efd4ace35b</a><br>
<br>
Author: Sebastian Dröge <<a href="mailto:sebastian@centricular.com">sebastian@centricular.com</a>><br>
Date:   Mon Dec  1 12:35:58 2014 +0100<br>
<br>
recipes: It's files_bins, not files_bin<br>
<br>
---<br>
<br>
 recipes/build-tools/autoconf.recipe |    2 +-<br>
 recipes/build-tools/automake.recipe |    2 +-<br>
 recipes/build-tools/bison.recipe    |    2 +-<br>
 recipes/build-tools/cmake.recipe    |    2 +-<br>
 recipes/build-tools/libtool.recipe  |    2 +-<br>
 recipes/faad2.recipe                |    2 +-<br>
 recipes/insanity.recipe             |    2 +-<br>
 recipes/toolchain/gendef.recipe     |    2 +-<br>
 8 files changed, 8 insertions(+), 8 deletions(-)<br>
<br>
diff --git a/recipes/build-tools/autoconf.recipe b/recipes/build-tools/autoconf.recipe<br>
index c405e58..c002cb2 100644<br>
--- a/recipes/build-tools/autoconf.recipe<br>
+++ b/recipes/build-tools/autoconf.recipe<br>
@@ -9,7 +9,7 @@ class Recipe(recipe.Recipe):<br>
     url = '<a href="http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.xz" target="_blank">http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.xz</a>'<br>
     deps = ['m4']<br>
<br>
-    files_bin = [<br>
+    files_bins = [<br>
         'bin/autoconf', 'bin/autoheader',<br>
         'bin/autom4te', 'bin/autoreconf',<br>
         'bin/autoscan', 'bin/autoupdate',<br>
diff --git a/recipes/build-tools/automake.recipe b/recipes/build-tools/automake.recipe<br>
index 36cb5ec..d95b80e 100644<br>
--- a/recipes/build-tools/automake.recipe<br>
+++ b/recipes/build-tools/automake.recipe<br>
@@ -9,6 +9,6 @@ class Recipe(recipe.Recipe):<br>
     url = '<a href="http://ftp.gnu.org/gnu/automake/automake-1.14.tar.xz" target="_blank">http://ftp.gnu.org/gnu/automake/automake-1.14.tar.xz</a>'<br>
     deps = ['autoconf']<br>
<br>
-    files_bin = ['bin/automake', 'bin/aclocal',<br>
+    files_bins = ['bin/automake', 'bin/aclocal',<br>
                  'bin/automake-1.14', 'bin/aclocal-1.14']<br>
     files_share = ['share/aclocal-1.14', 'share/automake-1.14']<br>
diff --git a/recipes/build-tools/bison.recipe b/recipes/build-tools/bison.recipe<br>
index 015f88f..a8c5329 100644<br>
--- a/recipes/build-tools/bison.recipe<br>
+++ b/recipes/build-tools/bison.recipe<br>
@@ -8,7 +8,7 @@ class Recipe(recipe.Recipe):<br>
     stype = SourceType.TARBALL<br>
     url = '<a href="http://ftpmirror.gnu.org/bison/bison-3.0.2.tar.gz" target="_blank">http://ftpmirror.gnu.org/bison/bison-3.0.2.tar.gz</a>'<br>
<br>
-    files_bin = ['bin/bison']<br>
+    files_bins = ['bin/bison']<br>
<br>
     def extract(self):<br>
         if os.path.exists(self.build_dir):<br>
diff --git a/recipes/build-tools/cmake.recipe b/recipes/build-tools/cmake.recipe<br>
index 96d963d..7e8979c 100644<br>
--- a/recipes/build-tools/cmake.recipe<br>
+++ b/recipes/build-tools/cmake.recipe<br>
@@ -15,7 +15,7 @@ class Recipe(recipe.Recipe):<br>
     configure_tpl = "%(config-sh)s --prefix=%(prefix)s"<br>
     can_use_configure_cache = False<br>
<br>
-    files_bin = ['bin/cmake', 'bin/ccmake']<br>
+    files_bins = ['bin/cmake', 'bin/ccmake']<br>
<br>
     def prepare(self):<br>
         if self.config.target_platform == Platform.WINDOWS:<br>
diff --git a/recipes/build-tools/libtool.recipe b/recipes/build-tools/libtool.recipe<br>
index 89be7f2..9479174 100644<br>
--- a/recipes/build-tools/libtool.recipe<br>
+++ b/recipes/build-tools/libtool.recipe<br>
@@ -8,7 +8,7 @@ class Recipe(recipe.Recipe):<br>
     stype = SourceType.TARBALL<br>
     url = '<a href="http://ftpmirror.gnu.org/libtool/libtool-2.4.2.tar.gz" target="_blank">http://ftpmirror.gnu.org/libtool/libtool-2.4.2.tar.gz</a>'<br>
<br>
-    files_bin = ['bin/libtool', 'bin/libtoolize']<br>
+    files_bins = ['bin/libtool', 'bin/libtoolize']<br>
     files_libs = ['libltdl']<br>
     files_share = ['share/libtool']<br>
     files_aclocal = [<br>
diff --git a/recipes/faad2.recipe b/recipes/faad2.recipe<br>
index afd0d5f..43378ec 100644<br>
--- a/recipes/faad2.recipe<br>
+++ b/recipes/faad2.recipe<br>
@@ -6,6 +6,6 @@ class Recipe(recipe.Recipe):<br>
     licenses = [License.GPLv2Plus]<br>
<br>
     files_libs = ['libfaad']<br>
-    files_bin = ['faad']<br>
+    files_bins = ['faad']<br>
     files_devel = ['include/faad.h', 'include/neaacdec.h', 'include/mp4ff.h',<br>
             'include/mp4ffint.h']<br>
diff --git a/recipes/insanity.recipe b/recipes/insanity.recipe<br>
index 7df0cc8..e550a50 100644<br>
--- a/recipes/insanity.recipe<br>
+++ b/recipes/insanity.recipe<br>
@@ -15,7 +15,7 @@ class Recipe(recipe.Recipe):<br>
         if self.config.platform in [Platform.WINDOWS, Platform.DARWIN]:<br>
             self.configure_options += ' --disable-gtk-doc'<br>
<br>
-    files_bin = ['bin/insanity-compare',<br>
+    files_bins = ['bin/insanity-compare',<br>
                  'bin/insanity-dbmerge',<br>
                  'bin/insanity-dumpresults',<br>
                  'bin/insanity-dumpresults-json',<br>
diff --git a/recipes/toolchain/gendef.recipe b/recipes/toolchain/gendef.recipe<br>
index 5ee326c..288f819 100644<br>
--- a/recipes/toolchain/gendef.recipe<br>
+++ b/recipes/toolchain/gendef.recipe<br>
@@ -3,7 +3,7 @@ class Recipe(recipe.Recipe):<br>
     version = 'v2.0.8'<br>
     licenses = [License.LGPL]<br>
     srcdir = 'mingw-w64-tools/gendef'<br>
-    files_bin = ['bin/gendef.exe']<br>
+    files_bins = ['bin/gendef.exe']<br>
<br>
<br>
     def prepare(self):<br>
<br>
<br>_______________________________________________<br>
gstreamer-commits mailing list<br>
<a href="mailto:gstreamer-commits@lists.freedesktop.org">gstreamer-commits@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/gstreamer-commits" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-commits</a><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature">Andoni Morales Alastruey<br><br>LongoMatch:The Digital Coach<br><a href="http://www.longomatch.ylatuya.es">http://www.longomatch.ylatuya.es</a></div>
</div>