bootstrap
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Fri Nov 15 21:21:12 2013 +0100 (2013-11-15)
changeset 3248 74cb9dc864ec
permissions -rwxr-xr-x
libc/(e)glibc: fix extra configparms

In case ${CT_LIBC_GLIBC_CONFIGPARMS} starts with a dash, printf will try
to interpret it as an option for itself, and will invariably flail in
panic as it does not recognise any of it.

Use a more robust solution, as suggested by Cody.

Reported-by: "Roberto A. Foglietta" <roberto.foglietta@gmail.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Cody P Schafer <devel-lists@codyps.com>
     1 #!/bin/sh
     2 set -e
     3 
     4 printf "Running autoconf...\n"
     5 autoconf -Wall --force
     6 
     7 printf "Done. You may now run:\n    ./configure\n"