diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2009-07-27 20:21:30 +0000 |
---|---|---|
committer | Ralf Wildenhues <rwild@gcc.gnu.org> | 2009-07-27 20:21:30 +0000 |
commit | a348618dae884974ebfbf4ddb746100fed4dba6b (patch) | |
tree | 28fed73cc6f235a1fdc7dc9f8ff30fbd94f819fa /libstdc++-v3/python | |
parent | e26f55480f2895cfa21613d9250736411e55ae15 (diff) | |
download | gcc-a348618dae884974ebfbf4ddb746100fed4dba6b.zip gcc-a348618dae884974ebfbf4ddb746100fed4dba6b.tar.gz gcc-a348618dae884974ebfbf4ddb746100fed4dba6b.tar.bz2 |
Makefile.am (install-data-local): Use DESTDIR correctly.
libstdc++-v3/
* python/Makefile.am (install-data-local): Use DESTDIR
correctly.
From-SVN: r150135
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 50cc6d9..457e45b 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) ;; \ |