This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.

See crosstool-NG for lots more information.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Fwd: Patch submission


On 10/04/2013 08:29 AM, Roberto A. Foglietta wrote:
-    printf "${CT_LIBC_GLIBC_CONFIGPARMS}\n" > configparms
+    printf -- "${CT_LIBC_GLIBC_CONFIGPARMS}\n" > configparms


This isn't portable. Is there a reason not to just do:

+    printf "%s\n" "${CT_LIBC_GLIBC_CONFIGPARMS}" > configparms

?

--
For unsubscribe information see http://sourceware.org/lists.html#faq


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]