commit 9c5e6400aced872b604257ea4fea805617693df3 Author: Carsten Schlote Date: Thu Feb 4 19:26:55 2010 +0100 [libptxdist] Rename: ptxd_ipkg_rev_packet Renamed ptxd_ipkg_rev_packet to ptxd_ipkg_rev_package. Signed-off-by: Carsten Schlote diff --git a/scripts/libptxdist.sh b/scripts/libptxdist.sh index acfa7e5..1acd313 100644 --- a/scripts/libptxdist.sh +++ b/scripts/libptxdist.sh @@ -591,7 +591,7 @@ ptxd_ipkg_rev_upstream() { # # get packet revision part of already split ipkg filename # -ptxd_ipkg_rev_packet() { +ptxd_ipkg_rev_package() { echo $4 } @@ -608,10 +608,10 @@ ptxd_ipkg_rev_smaller() { local first=`ptxd_ipkg_split $1` local first_rev_upstream=`ptxd_ipkg_rev_upstream $first` - local first_rev_packet=`ptxd_ipkg_rev_packet $first` + local first_rev_packet=`ptxd_ipkg_rev_package $first` local second=`ptxd_ipkg_split $2` local second_rev_upstream=`ptxd_ipkg_rev_upstream $second` - local second_rev_packet=`ptxd_ipkg_rev_packet $second` + local second_rev_packet=`ptxd_ipkg_rev_package $second` local first_major=`echo $first_rev_upstream | awk -F. '{print $1}'` local first_minor=`echo $first_rev_upstream | awk -F. '{print $2}'` local first_micro=`echo $first_rev_upstream | awk -F. '{print $3}'`