]> code.ossystems Code Review - openembedded-core.git/commitdiff
stage-manager-ipkg: Use head -n1. not head -1
authorRichard Purdie <richard@openedhand.com>
Wed, 16 Jul 2008 09:31:48 +0000 (09:31 +0000)
committerRichard Purdie <richard@openedhand.com>
Wed, 16 Jul 2008 09:31:48 +0000 (09:31 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4848 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/packages/stage-manager/files/stage-manager-ipkg

index 11704402f80da4eadf145bb376107bb0622ccbba..2559fdbcd83ed70f70d801ece194fc97cc6a7285 100755 (executable)
@@ -33,7 +33,7 @@ ipkg_src_names() {
 
 ipkg_src_byname() {
        local src="$1"
-       ipkg_srcs $src | head -1
+       ipkg_srcs $src | head -n1
 }
 
 ipkg_dests() {
@@ -58,16 +58,16 @@ ipkg_state_dirs() {
 }
 
 ipkg_dest_default() {
-       ipkg_dests_all | head -1
+       ipkg_dests_all | head -n1
 }
 
 ipkg_dest_default_name() {
-       ipkg_dest_names | head -1
+       ipkg_dest_names | head -n1
 }
 
 ipkg_dest_byname() {
        local dest="$1"
-       ipkg_dests $dest | head -1
+       ipkg_dests $dest | head -n1
 }
 
 ipkg_option() {
@@ -975,7 +975,7 @@ ipkg_install_wanted() {
 
 ipkg_upgrade_pkg() {
        local pkg="$1"
-       local avail_ver=`ipkg_info $pkg Version | ipkg_extract_value | head -1`
+       local avail_ver=`ipkg_info $pkg Version | ipkg_extract_value | head -n1`
 
        is_installed=
        for dest_name in `ipkg_dest_names`; do