PR python/11900:
* configure: Rebuild. * configure.ac: Add install-python to CONFIG_INSTALL. * Makefile.in (install-python): New.
This commit is contained in:
parent
9f2670f27b
commit
94f7449c81
4 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2010-08-18 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
PR python/11900:
|
||||
* configure: Rebuild.
|
||||
* configure.ac: Add install-python to CONFIG_INSTALL.
|
||||
* Makefile.in (install-python): New.
|
||||
|
||||
2010-08-18 Doug Evans <dje@google.com>
|
||||
|
||||
* gdb_assert.h (gdb_assert_not_reached): New macro.
|
||||
|
|
|
@ -1037,6 +1037,8 @@ install-tui:
|
|||
$(INSTALL_DATA) $(srcdir)/gdb.1 \
|
||||
$(DESTDIR)$(man1dir)/$$transformed_name.1
|
||||
|
||||
install-python:
|
||||
$(SHELL) $(srcdir)/../mkinstalldirs $(GDB_DATADIR)/python/gdb
|
||||
|
||||
uninstall: force $(CONFIG_UNINSTALL)
|
||||
transformed_name=`t='$(program_transform_name)'; \
|
||||
|
|
1
gdb/configure
vendored
1
gdb/configure
vendored
|
@ -10918,6 +10918,7 @@ $as_echo "#define HAVE_PYTHON 1" >>confdefs.h
|
|||
CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_PYTHON_OBS)"
|
||||
CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_PYTHON_DEPS)"
|
||||
CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_PYTHON_SRCS)"
|
||||
CONFIG_INSTALL="$CONFIG_INSTALL install-python"
|
||||
ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_PYTHON_CFLAGS)"
|
||||
|
||||
# Flags needed to compile Python code (taken from python-config --cflags).
|
||||
|
|
|
@ -832,6 +832,7 @@ if test "${have_libpython}" != no; then
|
|||
CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_PYTHON_OBS)"
|
||||
CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_PYTHON_DEPS)"
|
||||
CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_PYTHON_SRCS)"
|
||||
CONFIG_INSTALL="$CONFIG_INSTALL install-python"
|
||||
ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_PYTHON_CFLAGS)"
|
||||
|
||||
# Flags needed to compile Python code (taken from python-config --cflags).
|
||||
|
|
Loading…
Reference in a new issue