diff -urN sleuthkit-2.06.orig/check-install sleuthkit-2.06/check-install
--- sleuthkit-2.06.orig/check-install	2006-09-01 18:09:16.000000000 +0200
+++ sleuthkit-2.06/check-install	2006-09-09 07:58:45.000000000 +0200
@@ -9,12 +9,6 @@
   echo "ERROR: Missing image file tools";
 fi
 
-if (test -x "bin/md5") then
-  blah=1;
-else
-  echo "ERROR: Missing hash algorithm tools";
-fi
-
 if (test -x "bin/hfind") then
   blah=1;
 else
@@ -51,12 +45,6 @@
   echo "ERROR: Missing disk_stat tool";
 fi
 
-if (test -x "bin/file") then
-  blah=1;
-else
-  echo "ERROR: Missing 'file' command";
-fi
-
 if (test -x "bin/mactime") then
   blah=1;
 else
diff -urN sleuthkit-2.06.orig/Makefile sleuthkit-2.06/Makefile
--- sleuthkit-2.06.orig/Makefile	2006-09-01 18:10:23.000000000 +0200
+++ sleuthkit-2.06/Makefile	2006-09-09 07:59:06.000000000 +0200
@@ -10,9 +10,9 @@
 $(DIRS):
 	mkdir -p $@
 
-compile: no-perl mactime sorter file test 
+compile: no-perl mactime sorter test 
 
-compile-static: no-perl-static mactime sorter file test
+compile-static: no-perl-static mactime sorter test
 
 no-perl:
 	$(MAKE) -C src/auxtools
diff -urN sleuthkit-2.06.orig/src/sorter/install sleuthkit-2.06/src/sorter/install
--- sleuthkit-2.06.orig/src/sorter/install	2006-09-01 18:09:15.000000000 +0200
+++ sleuthkit-2.06/src/sorter/install	2006-09-09 08:00:07.000000000 +0200
@@ -58,7 +58,7 @@
   done
 fi
 
-echo "my \$SK_DIR=\"`cd ../..; pwd`/\";" >> $BIN_DIR$PROG;
+echo "my \$SK_DIR=\"/usr/\";" >> $BIN_DIR$PROG;
 
 # Print the current version
 echo "my \$VER = \"`cat ../../patchlevel`\";" >> $BIN_DIR$PROG;
diff -urN sleuthkit-2.06.orig/src/sorter/sorter.base sleuthkit-2.06/src/sorter/sorter.base
--- sleuthkit-2.06.orig/src/sorter/sorter.base	2006-09-01 18:09:15.000000000 +0200
+++ sleuthkit-2.06/src/sorter/sorter.base	2006-09-09 08:00:51.000000000 +0200
@@ -17,15 +17,15 @@
 
 $ENV{PATH} = '';
 
-my $BIN_DIR   = "$SK_DIR/bin/";
-my $SHARE_DIR = "$SK_DIR/share/sorter/";
+my $BIN_DIR   = "/usr/bin/";
+my $SHARE_DIR = "/usr/share/sorter/";
 
 my $SK_FLS   = "${BIN_DIR}fls";
 my $SK_ILS   = "${BIN_DIR}ils";
 my $SK_ICAT  = "${BIN_DIR}icat";
 my $SK_FILE  = "${BIN_DIR}file";
-my $SK_MD5   = "${BIN_DIR}md5";
-my $SK_SHA1  = "${BIN_DIR}sha1";
+my $SK_MD5   = "${BIN_DIR}md5sum";
+my $SK_SHA1  = "${BIN_DIR}sha1sum";
 my $SK_HFIND = "${BIN_DIR}hfind";
 my $SK_FSSTAT = "${BIN_DIR}fsstat";
 my $SK_IMGSTAT = "${BIN_DIR}img_stat";
