diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-18 21:08:35 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-18 21:08:35 +0000 |
commit | cf87b002c276709c10c41b6c99f20d9d52b02b75 (patch) | |
tree | 317b72e410707bf1ed48bad75fda75fc83836b33 /openwrt/scripts | |
parent | 67120f2a45099ceb63d7e1227b0573feb68449b8 (diff) |
sync whiterussian and kamikaze ipkg script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3403 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/scripts')
-rwxr-xr-x | openwrt/scripts/ipkg | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/openwrt/scripts/ipkg b/openwrt/scripts/ipkg index 617b038987..4d3ad85065 100755 --- a/openwrt/scripts/ipkg +++ b/openwrt/scripts/ipkg @@ -43,7 +43,7 @@ ipkg_src_names() { ipkg_src_byname() { local src="$1" - ipkg_srcs $src | head -1 + ipkg_srcs $src | head -n 1 } ipkg_dests() { @@ -68,16 +68,16 @@ ipkg_state_dirs() { } ipkg_dest_default() { - ipkg_dests_all | head -1 + ipkg_dests_all | head -n 1 } ipkg_dest_default_name() { - ipkg_dest_names | head -1 + ipkg_dest_names | head -n 1 } ipkg_dest_byname() { local dest="$1" - ipkg_dests $dest | head -1 + ipkg_dests $dest | head -n 1 } ipkg_option() { @@ -983,7 +983,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 -n 1`" is_installed= for dest_name in `ipkg_dest_names`; do |