summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-02-16 15:38:02 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-02-16 15:38:02 +0000
commita764489978716b7b8736ecd355944143b3387ac3 (patch)
treedb95d0370d5ebd7caccdd3eff121c7eddff05458
parentd76abfe8ca6629b9c03e9239d650c45767a351dc (diff)
downloadgrep-a764489978716b7b8736ecd355944143b3387ac3.tar.gz
grep.morph: Hackery to make bootstrap work
-rw-r--r--grep.morph7
1 files changed, 4 insertions, 3 deletions
diff --git a/grep.morph b/grep.morph
index 201bb9b6..a4538f09 100644
--- a/grep.morph
+++ b/grep.morph
@@ -2,13 +2,14 @@
"name": "grep",
"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"
]
}