diff --git a/srcpkgs/initramfs-tools/files/hook-functions b/srcpkgs/initramfs-tools/files/hook-functions index 05139eb7246..ee78f1d43ce 100644 --- a/srcpkgs/initramfs-tools/files/hook-functions +++ b/srcpkgs/initramfs-tools/files/hook-functions @@ -466,7 +466,7 @@ compare_versions() { local curv="$1" minv="$2" - xbps-cmpver $curv $minv + xbps-uhelper cmpver $curv $minv if [ $? -eq 0 ] || [ $? -eq 1 ]; then return 0 else diff --git a/srcpkgs/initramfs-tools/files/update-initramfs b/srcpkgs/initramfs-tools/files/update-initramfs index ef98cce8246..70df9c89a0f 100755 --- a/srcpkgs/initramfs-tools/files/update-initramfs +++ b/srcpkgs/initramfs-tools/files/update-initramfs @@ -300,7 +300,7 @@ get_sorted_versions() fi worklist="" for gsv_i in $version_list; do - xbps-cmpver "${gsv_x}" "${gsv_i}" + xbps-uhelper cmpver "${gsv_x}" "${gsv_i}" if [ $? -eq 0 ] || [ $? -eq 1 ]; then worklist="${worklist} ${gsv_x} ${gsv_i}" gsv_x="" diff --git a/srcpkgs/initramfs-tools/template b/srcpkgs/initramfs-tools/template index 614daebd8b9..a5b88304519 100644 --- a/srcpkgs/initramfs-tools/template +++ b/srcpkgs/initramfs-tools/template @@ -1,7 +1,7 @@ # Template file for 'initramfs-tools' pkgname=initramfs-tools version=0.93.3 -revision=1 +revision=2 build_style=custom-install short_desc="Tools for generating an initramfs" maintainer="Juan RP "