From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4214 invoked by alias); 4 Mar 2009 23:54:34 -0000 Mailing-List: contact archer-commits-help@sourceware.org; run by ezmlm Sender: Precedence: bulk List-Post: List-Help: List-Subscribe: Received: (qmail 4182 invoked by uid 9674); 4 Mar 2009 23:54:34 -0000 Date: Wed, 04 Mar 2009 23:54:00 -0000 Message-ID: <20090304235434.4153.qmail@sourceware.org> From: jkratoch@sourceware.org To: archer-commits@sourceware.org Subject: [SCM] archer-jankratochvil-python: Merge commit 'origin/archer-tromey-python' into archer-jankratochvil-python X-Git-Refname: refs/heads/archer-jankratochvil-python X-Git-Reftype: branch X-Git-Oldrev: e42b07c2ea95c94f7f08f35479758953fa6a7d1c X-Git-Newrev: 5cb172eb14db3f9b01bb8229fb001617ee447b9b X-SW-Source: 2009-q1/txt/msg00260.txt.bz2 List-Id: The branch, archer-jankratochvil-python has been updated via 5cb172eb14db3f9b01bb8229fb001617ee447b9b (commit) via 80e9d289cba705a6d9a834fb659df9640b4a2a6e (commit) from e42b07c2ea95c94f7f08f35479758953fa6a7d1c (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email. - Log ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: gdb/Makefile.in | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) First 500 lines of diff: diff --git a/gdb/Makefile.in b/gdb/Makefile.in index cb0d2ba..6e0d8ec 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1955,9 +1955,17 @@ install-python: $(INSTALL_DATA) $(srcdir)/python/lib/$$file $(DESTDIR)$(pythondir)/$$file; \ done -# Brute force. +# Other packages may have their files installed in $(pythondir). uninstall-python: - rm -rf $(DESTDIR)/$(pythondir) + files='$(PY_FILES)'; for file in $$files; do \ + slashdir=`echo "/$$file" | sed 's,/[^/]*$$,,'`; \ + rm -f $(DESTDIR)$(pythondir)/$$file; \ + while test "x$$file" != "x$$slashdir"; do \ + rmdir 2>/dev/null "$(DESTDIR)$(pythondir)$$slashdir"; \ + file="$$slashdir"; \ + slashdir=`echo "$$file" | sed 's,/[^/]*$$,,'`; \ + done \ + done # # Dependency tracking. Most of this is conditional on GNU Make being hooks/post-receive -- Repository for Project Archer.