summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-02-15 17:30:28 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-02-15 17:30:28 +0000
commite48ae579bb2e64987236815ae027aea23057f35f (patch)
tree2ef352a4bd39cda4e1fbd04dea5d3d870639c95f
parent136d11625a97a3e64a7022091610d630c60dd44e (diff)
downloadgdbm-e48ae579bb2e64987236815ae027aea23057f35f.tar.gz
gdbm.morph: don't run bootstrapbaserock/morph
Run autoreconf to get ./configure This won't have all the translation files, so use --disable-nls and Make flags to try and prevent translations being needed
-rw-r--r--gdbm.morph8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdbm.morph b/gdbm.morph
index 6a7b54f..1b200ce 100644
--- a/gdbm.morph
+++ b/gdbm.morph
@@ -2,13 +2,13 @@
"name": "gdbm",
"kind": "chunk",
"configure-commands": [
- "bash bootstrap",
- "./configure --prefix=/usr --enable-libgdbm-compat"
+ "autoreconf -fi",
+ "./configure --prefix=/usr --enable-libgdbm-compat --disable-nls"
],
"build-commands": [
- "make"
+ "make MANS= INFO_DEPS="
],
"install-commands": [
- "make install"
+ "make MANS= INFO_DEPS= DESTDIR=\"$DESTDIR\" install"
]
}