[hipl-dev] Re: [Branch ~hipl-core/hipl/trunk] Rev 5977: silence configure run by autobuilder for dist checks

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: hipl-dev@xxxxxxxxxxxxx
  • Date: Sat, 25 Jun 2011 14:57:26 +0200

On Fri, Jun 24, 2011 at 04:58:18PM +0000, noreply@xxxxxxxxxxxxx wrote:
> message:
>   silence configure run by autobuilder for dist checks
> 
> --- tools/hipl_autobuild.sh   2011-05-30 15:21:28 +0000
> +++ tools/hipl_autobuild.sh   2011-06-24 16:56:23 +0000
> @@ -117,7 +117,7 @@
>      # Remove autogenerated, Bazaar-related and similar files from the list.
>      find -L . | sed -e 1d -e 's:./::' -e '/\.bzr/d' -e '/autom4te.cache/d' 
> -e '/file_list_checkout/d' |
>          sort > file_list_checkout
> -    ./configure -q && make dist > /dev/null
> +    ./configure > /dev/null && make dist > /dev/null
>      tar -tzf hipl-*.tar.gz |
>          sed -e 1d -e "s:hipl-[0-9.]*/::" -e 's:/$::' -e 
> '/file_list_checkout/d' -e '/version.h/d' |
>          sort > file_list_tarball

Note that while this solves the problem it is meant to address, it
points to a deeper issue:

Our configure nowadays runs in two stages:

1) configure (generated by autoconf and aware of the '-q' option)
2) process_modules.py

The latter does not react to '-q' and in general does not fit the
rest of the build system very well.

Diego

Other related posts: