From a348618dae884974ebfbf4ddb746100fed4dba6b Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Mon, 27 Jul 2009 20:21:30 +0000 Subject: [PATCH] Makefile.am (install-data-local): Use DESTDIR correctly. libstdc++-v3/ * python/Makefile.am (install-data-local): Use DESTDIR correctly. From-SVN: r150135 --- libstdc++-v3/ChangeLog | 5 +++++ libstdc++-v3/python/Makefile.am | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 21f67c5d670..a4dca102bbd 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2009-07-27 Ralf Wildenhues + + * python/Makefile.am (install-data-local): Use DESTDIR + correctly. + 2009-07-24 Jason Merrill Core issue 901 diff --git a/libstdc++-v3/python/Makefile.am b/libstdc++-v3/python/Makefile.am index 50cc6d94541..457e45ba46d 100644 --- a/libstdc++-v3/python/Makefile.am +++ b/libstdc++-v3/python/Makefile.am @@ -44,7 +44,7 @@ install-data-local: gdb.py ## .la file, and any previous -gdb.py file. This is inherently ## fragile, but there does not seem to be a better option, because ## libtool hides the real names from us. - @here=`pwd`; cd $(toolexeclibdir); \ + @here=`pwd`; cd $(DESTDIR)$(toolexeclibdir); \ for file in libstdc++*; do \ case $$file in \ *-gdb.py) ;; \