Re: [sleuthkit-developers] autopsy and >tsk-2.50
Brought to you by:
carrier
From: Brian C. <ca...@sl...> - 2008-06-06 19:04:07
|
On Jun 6, 2008, at 2:58 PM, RB wrote: >> 2.10 will look for both md5 and md5sum in the configure script >> when it >> searches for the needed parts. The outputs are different when you >> run them >> on a file, but autopsy uses them by piping data into them via >> STDIN . In >> that scenario, they seem to operate the same. > > The 2.10 I've downloaded (January 29) doesn't do so; do you mean a > future release? Starting at line 287 of configure: found=0 for d in $dirs do if (test -x ${d}md5) then echo \$MD5_EXE = \'${d}md5\'\; >> $conf; echo "md5 found: ${d}md5"; found=1; break; elif (test -x ${d}md5sum) then echo \$MD5_EXE = \'${d}md5sum\'\; >> $conf; echo "md5 found: ${d}md5sum"; found=1; break; fi; done |