[axel-commits] r114 - /trunk/configure

phihag-guest at users.alioth.debian.org phihag-guest at users.alioth.debian.org
Mon Jun 22 11:24:58 UTC 2009


Author: phihag-guest
Date: Mon Jun 22 11:24:55 2009
New Revision: 114

URL: http://svn.debian.org/wsvn/axel/?sc=1&rev=114
Log:
Use old command quoting style in configure

Modified:
    trunk/configure

Modified: trunk/configure
URL: http://svn.debian.org/wsvn/axel/trunk/configure?rev=114&op=diff
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Mon Jun 22 11:24:55 2009
@@ -42,8 +42,8 @@
 		exit;
 	fi
 	
-	keyname=$(expr "$e" : '\(.*\)=.*' | sed 's/[^a-z0-9_]/_/g')
-	value=$(expr "$e" : '.*=\(.*\)' | sed "s/'/_/g")
+	keyname=`expr "$e" : '\(.*\)=.*' | sed 's/[^a-z0-9_]/_/g'`
+	value=`expr "$e" : '.*=\(.*\)' | sed "s/'/_/g"`
 	
 	eval "$keyname='$value'"
 	shift;




More information about the axel-commits mailing list