diff options
author | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-27 20:21:30 +0000 |
---|---|---|
committer | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-27 20:21:30 +0000 |
commit | d41323681c15c4ac3cfa115f7daf9a9a031a9cfd (patch) | |
tree | 28fed73cc6f235a1fdc7dc9f8ff30fbd94f819fa /libstdc++-v3/python | |
parent | 1c07b063c5dd7be4f220ffd1135f4ddc2034c238 (diff) | |
download | gcc-d41323681c15c4ac3cfa115f7daf9a9a031a9cfd.tar.gz |
libstdc++-v3/
* python/Makefile.am (install-data-local): Use DESTDIR
correctly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@150135 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/python')
-rw-r--r-- | libstdc++-v3/python/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
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) ;; \ |