summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2009-09-10 03:59:36 +0000
committerJoel Brobecker <brobecker@gnat.com>2009-09-10 03:59:36 +0000
commitaaa78ac0a4b0ea8916ad44ad3b1bd3ca48ed7857 (patch)
treea80c9263ff816486211816c0e6a8a8c20e2c9df8
parentafa19af4acee87d926f2eed004c86c57ff1a6dce (diff)
downloadgdb-aaa78ac0a4b0ea8916ad44ad3b1bd3ca48ed7857.tar.gz
* configure.ac: Fix the names of the python source and object files
following the renaming done in an earlier change. * configure: Regenerate.
-rw-r--r--gdb/ChangeLog6
-rwxr-xr-xgdb/configure4
-rw-r--r--gdb/configure.ac4
3 files changed, 10 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 61552e50900..4c1d348f596 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2009-09-10 Joel Brobecker <brobecker@adacore.com>
+
+ * configure.ac: Fix the names of the python source and object files
+ following the renaming done in an earlier change.
+ * configure: Regenerate.
+
2009-09-08 Joel Brobecker <brobecker@adacore.com>
Fix a build failure on AIX.
diff --git a/gdb/configure b/gdb/configure
index 2691e33a31b..99acc2f9cd6 100755
--- a/gdb/configure
+++ b/gdb/configure
@@ -9323,8 +9323,8 @@ $as_echo "${PYTHON_CFLAGS}" >&6; }
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
diff --git a/gdb/configure.ac b/gdb/configure.ac
index aa0bf753e00..b31d9b70de7 100644
--- a/gdb/configure.ac
+++ b/gdb/configure.ac
@@ -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)