summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-04-19 09:51:25 +0100
committerRichard Maw <richard.maw@codethink.co.uk>2012-04-19 09:52:51 +0100
commite8039bb6831abed71e70684ad0c3a7eee98879f1 (patch)
tree2a94518020e0256e489218ea9691e87573ade94e
parent417a5bd63954aeb3257bbe8b1bdab42c4cc22279 (diff)
downloadbzip2-e8039bb6831abed71e70684ad0c3a7eee98879f1.tar.gz
bzip2.morph: Build shared object first
It fails to build the other way around, presumably because the objects are compiled in a way unsuitable for shared objects.
-rw-r--r--bzip2.morph4
1 files changed, 2 insertions, 2 deletions
diff --git a/bzip2.morph b/bzip2.morph
index 6e2e44f..e1cb2a3 100644
--- a/bzip2.morph
+++ b/bzip2.morph
@@ -2,8 +2,8 @@
"name": "bzip2",
"kind": "chunk",
"build-commands": [
- "make",
- "make -f Makefile-libbz2_so"
+ "make -f Makefile-libbz2_so",
+ "make"
],
"install-commands": [
"make PREFIX=\"$DESTDIR$PREFIX\" install",