How to print arguments passed to configure script?

Posted by Sam on Stack Overflow See other posts from Stack Overflow or by Sam
Published on 2010-05-24T22:42:27Z Indexed on 2010/05/24 22:51 UTC
Read the original article Hit count: 222

Filed under:

Hi,

I'm trying to print arguments passed to a ./configure script. Calling 'echo' on $BASH_ARGV will just print the last set of arguments. For example if I run:

./configure --enable-foo --enable-bar

echo $BASH_ARGV will print only "--enable-bar"

How do I print all the arguments? Thanks!

© Stack Overflow or respective owner

Related posts about configure