* configure.ac: Fix the names of the python source and object files

following the renaming done in an earlier change.
        * configure: Regenerate.
This commit is contained in:
Joel Brobecker
2009-09-10 03:59:37 +00:00
parent 9e0d673543
commit 2c9e3c696d
3 changed files with 10 additions and 4 deletions

View File

@@ -683,8 +683,8 @@ if test "${have_libpython}" = yes; then
else
# Even if Python support is not compiled in, we need to have these files
# included in order to recognize the GDB command "python".
CONFIG_OBS="$CONFIG_OBS python.o python-value.o python-prettyprint.o"
CONFIG_SRCS="$CONFIG_SRCS python/python.c python/python-value.c python/python-prettyprint.c"
CONFIG_OBS="$CONFIG_OBS python.o py-value.o py-prettyprint.o"
CONFIG_SRCS="$CONFIG_SRCS python/python.c python/py-value.c python/py-prettyprint.c"
fi
AC_SUBST(PYTHON_CFLAGS)