diff options
author | Richard Maw <richard.maw@codethink.co.uk> | 2012-02-16 16:20:16 +0000 |
---|---|---|
committer | Richard Maw <richard.maw@codethink.co.uk> | 2012-02-16 16:20:16 +0000 |
commit | 644b865649176c3be135ab37beb2f4b35c9ee88b (patch) | |
tree | 48c0eddfafd0fdb332d631fe6ba167e3caa13261 /diffutils.morph | |
parent | bda92ad9f72eb7891edb92ef7da66748df00e445 (diff) | |
download | diffutils-baserock/morph-stable.tar.gz |
diffutils.morph: hackery to use submodulesbaserock/morph-stable
Diffstat (limited to 'diffutils.morph')
-rw-r--r-- | diffutils.morph | 7 |
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" ] } |