summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-02-16 16:20:16 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-02-16 16:20:16 +0000
commit644b865649176c3be135ab37beb2f4b35c9ee88b (patch)
tree48c0eddfafd0fdb332d631fe6ba167e3caa13261
parentbda92ad9f72eb7891edb92ef7da66748df00e445 (diff)
downloaddiffutils-baserock/morph-stable.tar.gz
diffutils.morph: hackery to use submodulesbaserock/morph-stable
-rw-r--r--diffutils.morph7
1 files changed, 4 insertions, 3 deletions
diff --git a/diffutils.morph b/diffutils.morph
index 527b98e..6e96c54 100644
--- a/diffutils.morph
+++ b/diffutils.morph
@@ -2,13 +2,14 @@
"name": "diffutils",
"kind": "chunk",
"configure-commands": [
- "bash bootstrap",
- "./configure --prefix=/usr"
+ "rm .git*",
+ "bash bootstrap --skip-po",
+ "./configure --prefix=/usr --disable-nls"
],
"build-commands": [
"make"
],
"install-commands": [
- "make install"
+ "make DESTDIR=\"$DESTDIR\" install"
]
}