[PATCH] cosmetic fix to ltmain.m4sh

2008-07-31 Thread Paolo Bonzini

This small patch makes sure that all braces are paired in ltmain.m4sh.

2008-07-31  Paolo Bonzini  [EMAIL PROTECTED]

* ltmain.m4sh (func_emit_cwrapperexe_src): Factor
multiple closed braces into the next cat command.
diff --git a/libltdl/config/ltmain.m4sh b/libltdl/config/ltmain.m4sh
index b6fb29b..a5fd949 100644
--- a/libltdl/config/ltmain.m4sh
+++ b/libltdl/config/ltmain.m4sh
@@ -3126,19 +3126,18 @@ EOF
   return 127;
 }
   return rval;
-}
 EOF
;;
  *)
cat EOF
   execv (lt_argv_zero, newargz);
   return rval; /* =127, but avoids unused variable warning */
-}
 EOF
;;
esac
 
cat EOF
+}
 
 void *
 xmalloc (size_t num)


Re: [PATCH] cosmetic fix to ltmain.m4sh

2008-07-31 Thread Ralf Wildenhues
Hi Paolo,

* Paolo Bonzini wrote on Thu, Jul 31, 2008 at 01:49:10PM CEST:
 This small patch makes sure that all braces are paired in ltmain.m4sh.

 2008-07-31  Paolo Bonzini  [EMAIL PROTECTED]

 * ltmain.m4sh (func_emit_cwrapperexe_src): Factor
   multiple closed braces into the next cat command.

Pushed, thanks.

Cheers,
Ralf