diff options
author | Holger Hans Peter Freyther <zecke@openmoko.org> | 2008-07-28 10:33:37 +0200 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2008-10-29 14:21:17 +0100 |
commit | 509a1ba26dc5f08b55c726187c40b6858dbd8fea (patch) | |
tree | 1fa6ad703a90ea8d4077271e5c30edf81fbfc69f /packages/mono/mono_1.2.5.1.bb | |
parent | 7cf8236642164092b9f9ba5a7be580d12871fa85 (diff) |
bashism: Move away from pushd/popd as it is only available for bash
Diffstat (limited to 'packages/mono/mono_1.2.5.1.bb')
-rw-r--r-- | packages/mono/mono_1.2.5.1.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/mono/mono_1.2.5.1.bb b/packages/mono/mono_1.2.5.1.bb index d073aa7d98..8c56d9b835 100644 --- a/packages/mono/mono_1.2.5.1.bb +++ b/packages/mono/mono_1.2.5.1.bb @@ -14,9 +14,9 @@ EXTRA_OECONF += " --disable-mcs-build " do_install_prepend() { install -d ${D} - pushd ${D} + cd ${D} tar -xzf ${STAGING_DATADIR_NATIVE}/mono-mcs/mono-mcs-${PV}.tar.gz - popd + cd ${S} } do_install_append() { @@ -24,11 +24,11 @@ do_install_append() { # however, jay is not being cross-compiled and thus only # available for the buildhost architecture, so remove it # entirely - pushd ${D} + cd ${D} rm -rf ./usr/share/man/man1/jay.1 ./usr/share/jay \ ./usr/share/jay/README.jay \ ./usr/bin/jay - popd + cd ${S} # Not packaged with the default rules and apparently # not used for anything |