From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4178 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 4136 invoked by uid 9674); 4 Mar 2009 23:54:33 -0000 Date: Wed, 04 Mar 2009 23:54:00 -0000 Message-ID: <20090304235433.4121.qmail@sourceware.org> From: jkratoch@sourceware.org To: archer-commits@sourceware.org Subject: [SCM] archer: Merge commit 'origin/archer-jankratochvil-python' into archer X-Git-Refname: refs/heads/archer X-Git-Reftype: branch X-Git-Oldrev: 91200d8f856c3165270b24ab392b74d9155b7180 X-Git-Newrev: 1c279e7757c153b751d87d7da7592b8d3983da19 X-SW-Source: 2009-q1/txt/msg00259.txt.bz2 List-Id: The branch, archer has been updated via 1c279e7757c153b751d87d7da7592b8d3983da19 (commit) via 5cb172eb14db3f9b01bb8229fb001617ee447b9b (commit) via 80e9d289cba705a6d9a834fb659df9640b4a2a6e (commit) from 91200d8f856c3165270b24ab392b74d9155b7180 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email. - Log ----------------------------------------------------------------- commit 1c279e7757c153b751d87d7da7592b8d3983da19 Merge: 91200d8f856c3165270b24ab392b74d9155b7180 5cb172eb14db3f9b01bb8229fb001617ee447b9b Author: Jan Kratochvil Date: Thu Mar 5 00:54:25 2009 +0100 Merge commit 'origin/archer-jankratochvil-python' into archer ----------------------------------------------------------------------- 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 01cb9e9..c84a4ac 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1997,9 +1997,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.