diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-07-15 15:56:11 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2017-07-17 21:37:28 +0100 |
commit | 96dae69368fe484d01441699c33c2e6ae9e1fb4a (patch) | |
tree | 61322ca1ee057bf4de68b0fed43d3810082f9088 | |
parent | ecfebdc3f56a615a45a9387441d8d5e4a5ca4a0b (diff) |
recipes: build-tools: use specific commits for gas-preprocessor and mingw-regex
https://bugzilla.gnome.org/show_bug.cgi?id=784364
-rw-r--r-- | recipes/build-tools/gas-preprocessor.recipe | 2 | ||||
-rw-r--r-- | recipes/build-tools/mingw-regex.recipe | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes/build-tools/gas-preprocessor.recipe b/recipes/build-tools/gas-preprocessor.recipe index 6908eb7d..9eda469d 100644 --- a/recipes/build-tools/gas-preprocessor.recipe +++ b/recipes/build-tools/gas-preprocessor.recipe @@ -9,7 +9,7 @@ class Recipe(recipe.Recipe): licenses = [License.GPLv2] btype = BuildType.CUSTOM remotes = {'origin': 'git://git.libav.org/gas-preprocessor.git'} - commit = 'origin/master' + commit = 'fad9080da871bb7924431a5e22fdaccae56b5950' def install(self): if not os.path.exists(os.path.join(self.config.prefix, 'bin')): diff --git a/recipes/build-tools/mingw-regex.recipe b/recipes/build-tools/mingw-regex.recipe index 65d35e03..7891bd3d 100644 --- a/recipes/build-tools/mingw-regex.recipe +++ b/recipes/build-tools/mingw-regex.recipe @@ -8,6 +8,6 @@ class Recipe(recipe.Recipe): files_devel = ['include/regex.h'] autoreconf = True remotes = {'origin': 'git://git.code.sf.net/p/mingw/regex'} - commit = 'origin/master' + commit = '7aa7b79d53a4b275d70397b424acffc57dbcf7a2' patches = ['mingw-regex/0001-Fix-compilation.patch'] |