diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-04-16 00:32:39 +0200 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-04-16 10:47:22 +0200 |
commit | 963d3c1fb49b95ff78bccd98832771ac63af1c93 (patch) | |
tree | 893ba5e58b6bbe9f367ff312abfd90de66bebe3d /recipes | |
parent | a88ead3483e2f3fdf9a95573fae9da105ecae08e (diff) |
Fix order of arguments
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/bzip2.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/bzip2.recipe b/recipes/bzip2.recipe index 7e2c883d..4ed8bf5c 100644 --- a/recipes/bzip2.recipe +++ b/recipes/bzip2.recipe @@ -19,4 +19,4 @@ class Recipe(recipe.Recipe): else: shared_makefile = 'Makefile-libbz2_so' self.make = 'make -f %s; make' % shared_makefile - self.make_install = 'make -f %s install PREFIX=%s; make install PREFIX=%s' % (self.config.prefix, shared_makefile, self.config.prefix) + self.make_install = 'make -f %s install PREFIX=%s; make install PREFIX=%s' % (shared_makefile, self.config.prefix, self.config.prefix) |