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!
There is a variable called ac_configure_args that contains what I need. Thanks for the help everyone.