From f38d65609d1bdc81a20ee6b27a4b5082990075f4 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Fri, 30 Sep 2005 13:35:54 +0000 Subject: Use an explicit path for the md5sum utility --- urpm/util.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/urpm/util.pm b/urpm/util.pm index 16f3a2cc..0423a094 100644 --- a/urpm/util.pm +++ b/urpm/util.pm @@ -81,7 +81,7 @@ sub untaint { sub md5sum { #- Use an external command to avoid depending on perl my ($file) = @_; - return((split ' ', `md5sum '$file'`)[0]); + return((split ' ', `/usr/bin/md5sum '$file'`)[0]); } sub copy { -- cgit v1.2.1