Ulrich Klauer <ulr...@chirlu.de> wrote:
> > > This can be done by e.g. calling "autoreconf --force".
> > Perhaps we should make this run unconditionally in release.sh. Running
> > the script will take a few seconds more, but we'd be sure to have the
> > most recent versions in each release.
> 
> As it turns out, "autoreconf --force" doesn't update the auxiliary  
> files. "autoreconf --install --force" *does* do it, but also  
> overwrites INSTALL. :-(  So the right way seems to be to delete the  
> relevant files (config.guess, config.sub; depcomp, install-sh, missing  
> as well? more?) and then run "autoreconf -i" without --force.

AM_INIT_AUTOMAKE([foreign]) seems to avoid clobbering INSTALL.
I'm no autotools expert, but I remember reading somewhere foreign
was recommended for nearly all non-GNU projects...

--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ m4_ifdef([AC_CONFIG_MACRO_DIR], [AC_CONFIG_MACRO_DIR([m4])])
 dnl Find target architecture
 AC_CANONICAL_TARGET
 
-AM_INIT_AUTOMAKE
+AM_INIT_AUTOMAKE([foreign])
 
 dnl create a config.h file (Automake will add -DHAVE_CONFIG_H)
 AM_CONFIG_HEADER(src/soxconfig.h)

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
_______________________________________________
SoX-devel mailing list
SoX-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-devel

Reply via email to