summaryrefslogtreecommitdiffstats
path: root/meta/packages/stage-manager
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-07-16 09:31:48 +0000
committerRichard Purdie <richard@openedhand.com>2008-07-16 09:31:48 +0000
commitebb08f0fbab7e6f8994e531c5d84c8cc4aa59589 (patch)
tree094212ec20a7a00b346e2428bbb8338911e4c518 /meta/packages/stage-manager
parentcd42b9bc08996d2f1070a6bdb6c5047f0106a8cf (diff)
downloadpoky-ebb08f0fbab7e6f8994e531c5d84c8cc4aa59589.tar.gz
stage-manager-ipkg: Use head -n1. not head -1
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4848 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/stage-manager')
-rwxr-xr-xmeta/packages/stage-manager/files/stage-manager-ipkg10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/packages/stage-manager/files/stage-manager-ipkg b/meta/packages/stage-manager/files/stage-manager-ipkg
index 11704402f8..2559fdbcd8 100755
--- a/meta/packages/stage-manager/files/stage-manager-ipkg
+++ b/meta/packages/stage-manager/files/stage-manager-ipkg
@@ -33,7 +33,7 @@ ipkg_src_names() {
33 33
34ipkg_src_byname() { 34ipkg_src_byname() {
35 local src="$1" 35 local src="$1"
36 ipkg_srcs $src | head -1 36 ipkg_srcs $src | head -n1
37} 37}
38 38
39ipkg_dests() { 39ipkg_dests() {
@@ -58,16 +58,16 @@ ipkg_state_dirs() {
58} 58}
59 59
60ipkg_dest_default() { 60ipkg_dest_default() {
61 ipkg_dests_all | head -1 61 ipkg_dests_all | head -n1
62} 62}
63 63
64ipkg_dest_default_name() { 64ipkg_dest_default_name() {
65 ipkg_dest_names | head -1 65 ipkg_dest_names | head -n1
66} 66}
67 67
68ipkg_dest_byname() { 68ipkg_dest_byname() {
69 local dest="$1" 69 local dest="$1"
70 ipkg_dests $dest | head -1 70 ipkg_dests $dest | head -n1
71} 71}
72 72
73ipkg_option() { 73ipkg_option() {
@@ -975,7 +975,7 @@ ipkg_install_wanted() {
975 975
976ipkg_upgrade_pkg() { 976ipkg_upgrade_pkg() {
977 local pkg="$1" 977 local pkg="$1"
978 local avail_ver=`ipkg_info $pkg Version | ipkg_extract_value | head -1` 978 local avail_ver=`ipkg_info $pkg Version | ipkg_extract_value | head -n1`
979 979
980 is_installed= 980 is_installed=
981 for dest_name in `ipkg_dest_names`; do 981 for dest_name in `ipkg_dest_names`; do