Index: configure
===================================================================
--- configure	(revision 6363ad16a717ec42cd099b9b8b756b78672c2ecf)
+++ configure	(revision 65e9bc1829e43db0a1b7848a068ab4715b6e2f2d)
@@ -3005,24 +3005,11 @@
 
 # Allow program name tansformation
-# will fille program_transform_name with appropriate sed regex
-
-#autoconf escapes $ and \ since automake wiill un-escape them.
-#Since we need to use the sed transform in autoconf we need to manualy un-escape these characters
-name_transform=`echo ${program_transform_name} | sed 's/\\$\\$/\\$/g' | sed 's/\\\\\\\/\\\/g'`
-cfa_name=`echo cfa | sed ${name_transform}`
-cc1_name=`echo cc1 | sed ${name_transform}`
-cpp_name=`echo cfa-cpp | sed ${name_transform}`
+# will fill program_transform_name with appropriate sed regex
+
 
 #Trasforming cc1 will break compilation
-if ! test "${cc1_name}" = "cc1"; then
-    as_fn_error $? "Program transform must not modify cc1.
-		--program-sufix and --program-prefix not supported.
-		Use -program-transform-name='s/cfa$/[Desired name here]/' instead" "$LINENO" 5
-fi
-#We could support transforming cfa-cpp but since it is located in a unique subfolder we don't need to
-if ! test "${cpp_name}" = "cfa-cpp"; then
-    as_fn_error $? "Program transform must not modify cfa-cpp.
-		--program-sufix and --program-prefix not supported.
-		Use -program-transform-name='s/cfa$/[Desired name here]/' instead" "$LINENO" 5
+if test "${program_transform_name}" = ""; then
+    as_fn_error $? "Program transform not supported.
+		Use --with-cfa-name='[Desired name here]' instead" "$LINENO" 5
 fi
 
Index: configure.ac
===================================================================
--- configure.ac	(revision 6363ad16a717ec42cd099b9b8b756b78672c2ecf)
+++ configure.ac	(revision 65e9bc1829e43db0a1b7848a068ab4715b6e2f2d)
@@ -23,5 +23,5 @@
 
 #Trasforming cc1 will break compilation
-if ! test "${program_transform_name}" = ""; then
+if test "${program_transform_name}" = ""; then
     AC_MSG_ERROR([Program transform not supported.
 		Use --with-cfa-name='[[Desired name here]]' instead])
