On systems where the 'md5' command is used, there is a conflict with the md5() shell function in fate-run.sh. Using the 'command' keyword bypasses the shell function for correct behaviour. Signed-off-by: Mans Rullgard <mans@mansr.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			513 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			513 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # try to find an md5 program
 | |
| 
 | |
| if [ X"$(echo | md5sum 2> /dev/null)" != X ]; then
 | |
|     do_md5sum() { md5sum -b $1; }
 | |
| elif [ X"$(echo | command md5 2> /dev/null)" != X ]; then
 | |
|     do_md5sum() { command md5 $1 | sed 's#MD5 (\(.*\)) = \(.*\)#\2 *\1#'; }
 | |
| elif [ -x /sbin/md5 ]; then
 | |
|     do_md5sum() { /sbin/md5 -r $1 | sed 's# \**\./# *./#'; }
 | |
| elif openssl version >/dev/null 2>&1; then
 | |
|     do_md5sum() { openssl md5 $1 | sed 's/MD5(\(.*\))= \(.*\)/\2 *\1/'; }
 | |
| else
 | |
|     do_md5sum() { echo No md5sum program found; }
 | |
| fi
 |