summaryrefslogtreecommitdiff
path: root/recipes/build-tools
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2019-11-01 05:28:34 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2019-11-01 05:28:34 +0530
commit06c72097390be52c763c81a3a5750b3583c59ac7 (patch)
treef1852b00772f8697e2df134b2e27cdb1df8fdd8a /recipes/build-tools
parentcd68425f6cac16818aef0a285615b9413f9f45c1 (diff)
build-tools/yasm.recipe: Don't add -lintl to LDFLAGS
This might've been needed 6 years ago when it was added, but it is not anymore, and in fact it causes a build failure if gettext-tools isn't available.
Diffstat (limited to 'recipes/build-tools')
-rw-r--r--recipes/build-tools/yasm.recipe4
1 files changed, 0 insertions, 4 deletions
diff --git a/recipes/build-tools/yasm.recipe b/recipes/build-tools/yasm.recipe
index f69eabfc..eb88153b 100644
--- a/recipes/build-tools/yasm.recipe
+++ b/recipes/build-tools/yasm.recipe
@@ -10,7 +10,3 @@ class Recipe(recipe.Recipe):
tarball_checksum = '3dce6601b495f5b3d45b59f7d2492a340ee7e84b5beca17e48f862502bd5603f'
files_bins = ['yasm', 'vsyasm', 'ytasm']
-
- def prepare(self):
- if self.config.target_platform == Platform.WINDOWS:
- self.append_env('LDFLAGS', '-lintl')