summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-03-14 13:19:52 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-03-14 13:19:52 +0000
commit5f9a1a002c2a87f5291a2ef2b48230e41215b138 (patch)
tree35237519d7c81066b22863fddddbe9b02ee9f8cf
parent23c68a6e63e4640b957146b3069db47321da828d (diff)
downloadbash-5f9a1a002c2a87f5291a2ef2b48230e41215b138.tar.gz
bash.morph: change options for pass1
-rw-r--r--bash.morph5
1 files changed, 3 insertions, 2 deletions
diff --git a/bash.morph b/bash.morph
index aa21ed37..50fc2bb8 100644
--- a/bash.morph
+++ b/bash.morph
@@ -2,12 +2,13 @@
"name": "bash",
"kind": "chunk",
"configure-commands": [
- "./configure --prefix=/usr --bindir=/bin --without-bash-malloc --with-installed-readline"
+ "./configure --prefix=\"$PREFIX\" --without-bash-malloc"
],
"build-commands": [
"make"
],
"install-commands": [
- "make DESTDIR=\"$DESTDIR\" install"
+ "make DESTDIR=\"$DESTDIR\" install",
+ "ln -s \"$PREFIX/bin/bash\" \"$DESTDIR/$PREFIX/bin/sh\""
]
}