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 | |
parent | 7cf8236642164092b9f9ba5a7be580d12871fa85 (diff) |
bashism: Move away from pushd/popd as it is only available for bash
Diffstat (limited to 'packages/mono')
-rw-r--r-- | packages/mono/mono_1.2.5.1.bb | 8 | ||||
-rw-r--r-- | packages/mono/mono_1.2.6.bb | 8 | ||||
-rw-r--r-- | packages/mono/mono_svn.bb | 8 |
3 files changed, 12 insertions, 12 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 diff --git a/packages/mono/mono_1.2.6.bb b/packages/mono/mono_1.2.6.bb index f436a67df5..c039828180 100644 --- a/packages/mono/mono_1.2.6.bb +++ b/packages/mono/mono_1.2.6.bb @@ -12,9 +12,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() { @@ -22,11 +22,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 diff --git a/packages/mono/mono_svn.bb b/packages/mono/mono_svn.bb index a42ddd8231..a5ba966796 100644 --- a/packages/mono/mono_svn.bb +++ b/packages/mono/mono_svn.bb @@ -13,9 +13,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() { @@ -23,11 +23,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 |