Ralf Wildenhues <[EMAIL PROTECTED]> writes: > Hi Simon, > > * Simon Josefsson wrote on Tue, Mar 25, 2008 at 01:47:39PM CET: >> >> Alternatively, I could document the work-around I use to solve the >> gettext vs gnulib vs autoconf problem right now: store all gnulib >> generated files in git, and before running autoreconf move the gnulib >> copy of config.rpath out of the way, and after running autoreconf, move >> it back again. This have worked for several projects for quite some >> time, but I'm not confident it is safe. > > Can't you use > AUTOPOINT=true autoreconf -v > > in this case, instead of moving files?
No, I need the other files created by autopoint, in particular the *.m4 files, see: [EMAIL PROTECTED]:~/src/gsasl$ autoreconf -v --install autoreconf: Entering directory `.' autoreconf: running: autopoint autopoint: File build-aux/config.rpath has been locally modified. autopoint: *** Some files have been locally modified. Not overwriting them because --force has not been specified. For your convenience, you find the local modifications in the file '/tmp/aro21747/gtB21792/autopoint.diff'. autopoint: *** Stop. autoreconf: autopoint failed with exit status: 1 [EMAIL PROTECTED]:~/src/gsasl$ [EMAIL PROTECTED]:~/src/gsasl$ AUTOPOINT=true autoreconf -v --install autoreconf: Entering directory `.' autoreconf: running: true autoreconf: running: aclocal -I m4 -I gl/m4 autoreconf: configure.ac: tracing autoreconf: configure.ac: adding subdirectory lib to autoreconf autoreconf: Entering directory `lib' aclocal: couldn't open directory `m4': No such file or directory autoreconf: aclocal failed with exit status: 1 [EMAIL PROTECTED]:~/src/gsasl$ /Simon