Le 05/05/2013 19:26, Pavan Balaji a écrit : > From d5bee8b50ccefd1ae9f7cd6d69639bfc45b3b0b3 Mon Sep 17 00:00:00 2001 > From: Pavan Balaji <bal...@mcs.anl.gov> > Date: Sun, 5 May 2013 12:21:14 -0500 > Subject: [PATCH 2/2] Allow users to specify other flags to autoreconf. > > No reviewer. > --- > autogen.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/autogen.sh b/autogen.sh > index d69ef09e..88a122ad 100755 > --- a/autogen.sh > +++ b/autogen.sh > @@ -1,2 +1,2 @@ > : > -autoreconf -ivf > +autoreconf ${autoreconf_args:"-ivf"} > -- 1.8.1.2
This needs an additional dash: -autoreconf -ivf +autoreconf ${autoreconf_args:-"-ivf"} and it requires a non-empty autoreconf_args such as " " to actually remove our "-ivf". I assume it's still ok for you. Brice