File: 02_use_debian_hashtools.diff

package info (click to toggle)
sleuthkit 2.06-3etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 7,128 kB
  • ctags: 5,133
  • sloc: ansic: 41,406; sh: 14,123; perl: 4,745; cpp: 4,297; makefile: 925; python: 29
file content (39 lines) | stat: -rw-r--r-- 949 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
--- sleuthkit-1.71.orig/check-install
+++ sleuthkit-1.71/check-install
@@ -3,12 +3,6 @@
 echo '';
 echo 'Checking Tools';
 
-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
--- sleuthkit-1.71.orig/src/hashtools/Makefile
+++ sleuthkit-1.71/src/hashtools/Makefile
@@ -3,7 +3,7 @@
 OPT	= -O -Wall
 DEBUG	= -g
 BIN	= ../../bin
-PROGS	= $(BIN)/md5 $(BIN)/sha1 $(BIN)/hfind
+PROGS	= $(BIN)/hfind
 CFLAGS	= $(DEFS) $(INCL) $(OPT) $(DEBUG) -I. $(XFLAGS)
 
 LIBOBJ  = md5c.o sha1c.o
--- sleuthkit-1.71.orig/src/sorter/sorter.base
+++ sleuthkit-1.71/src/sorter/sorter.base
@@ -46,8 +46,8 @@
 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";