Fixed obsolete head calls
authorFlorian Fainelli <florian@openwrt.org>
Tue, 14 Feb 2006 13:20:56 +0000 (13:20 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Tue, 14 Feb 2006 13:20:56 +0000 (13:20 +0000)
SVN-Revision: 3238

openwrt/scripts/ipkg

index 6cd1cb440ae05f18eda675639b919cdea210299d..199501855ae37ecec20c9a17b02d7c0a03aed149 100755 (executable)
@@ -43,7 +43,7 @@ ipkg_src_names() {
 
 ipkg_src_byname() {
        local src="$1"
-       ipkg_srcs $src | head -1
+       ipkg_srcs $src | head -1
 }
 
 ipkg_dests() {
@@ -68,16 +68,16 @@ ipkg_state_dirs() {
 }
 
 ipkg_dest_default() {
-       ipkg_dests_all | head -1
+       ipkg_dests_all | head -1
 }
 
 ipkg_dest_default_name() {
-       ipkg_dest_names | head -1
+       ipkg_dest_names | head -1
 }
 
 ipkg_dest_byname() {
        local dest="$1"
-       ipkg_dests $dest | head -1
+       ipkg_dests $dest | head -1
 }
 
 ipkg_option() {
@@ -984,7 +984,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 -1`"
 
        is_installed=
        for dest_name in `ipkg_dest_names`; do