summaryrefslogtreecommitdiffstats
path: root/meta/packages/bash/bash.inc
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openedhand.com>2008-03-26 09:31:03 +0000
committerMarcin Juszkiewicz <hrw@openedhand.com>2008-03-26 09:31:03 +0000
commit069bb4019f9dd2698f58030a37474afbf2037301 (patch)
tree03b84e57ffe36f386771d238005c20767a528146 /meta/packages/bash/bash.inc
parent513eb4bddf39297ecb3e3f9e2f57fc0d53a786c5 (diff)
downloadpoky-069bb4019f9dd2698f58030a37474afbf2037301.tar.gz
bash: fix postinst to not touch host system
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4120 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/bash/bash.inc')
-rw-r--r--meta/packages/bash/bash.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/packages/bash/bash.inc b/meta/packages/bash/bash.inc
index 80aedfa1c8..b67e8bbe39 100644
--- a/meta/packages/bash/bash.inc
+++ b/meta/packages/bash/bash.inc
@@ -20,7 +20,7 @@ do_configure () {
20} 20}
21 21
22pkg_postinst () { 22pkg_postinst () {
23 touch ${sysconfdir}/shells 23 touch $D${sysconfdir}/shells
24 grep -q "bin/bash" ${sysconfdir}/shells || echo /bin/bash >> ${sysconfdir}/shells 24 grep -q "bin/bash" $D${sysconfdir}/shells || echo /bin/bash >> $D${sysconfdir}/shells
25 grep -q "bin/sh" ${sysconfdir}/shells || echo /bin/sh >> ${sysconfdir}/shells 25 grep -q "bin/sh" $D${sysconfdir}/shells || echo /bin/sh >> $D${sysconfdir}/shells
26} 26}