1
1

ROMIO's configure.in had a "dnl AC_CONFIG_AUX_DIR" before its real

AC_CONFIG_AUX_DIR that confused autogen.sh and caused it to find the
wrong aux dir (and therefore to not remove stale auto tools files).

This commit was SVN r11597.
Этот коммит содержится в:
Jeff Squyres 2006-09-08 22:40:00 +00:00
родитель 160120b4c5
Коммит 24f15f288d

Просмотреть файл

@ -290,8 +290,8 @@ find_and_delete() {
echo "--> Errr... there's no configure.in or configure.ac file!"
fi
if test -n "$fad_cfile"; then
auxdir="`grep AC_CONFIG_AUX_DIR $fad_cfile | cut -d\( -f 2 | cut -d\) -f 1`"
fi
auxdir="`grep AC_CONFIG_AUX_DIR $fad_cfile | egrep -v '^dnl' | cut -d\( -f 2 | cut -d\) -f 1`"
fi
if test -f "$auxdir/$fad_file"; then
rm -f "$auxdir/$fad_file"
fi