diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-05-06 14:18:55 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-05-06 14:18:55 -0500 |
commit | 5ca3dca610d6591a09a930b749e539b9f2112704 (patch) | |
tree | 4e3795b7facba5b3e8d38fb0920f358d9e5c0a90 /admin | |
parent | e5f8f38598684efbfe8a8d682106492b30cfaba2 (diff) | |
download | tdeio-locate-5ca3dca610d6591a09a930b749e539b9f2112704.tar.gz tdeio-locate-5ca3dca610d6591a09a930b749e539b9f2112704.zip |
GCC 4.7 fixes.
Thanks to Francois Andriot.
Diffstat (limited to 'admin')
-rw-r--r-- | admin/kde.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/kde.py b/admin/kde.py index 49eb1a3..955a515 100644 --- a/admin/kde.py +++ b/admin/kde.py @@ -781,7 +781,7 @@ def generate(env): lenv.KDEinstall( 'KDEDOC', lenv.join(lang,destination), lenv.join(folder,'index.cache.bz2') ) if env['_INSTALL']: - dir=lenv.join(lenv.getInstDirForResType('KDEDOC'), lang, destination) + dir=lenv.join(env['DESTDIR'], lenv.getInstDirForResType('KDEDOC'), lang, destination) comp='mkdir -p %s && cd %s && rm -f common && ln -s ../common common' % (dir, dir) lenv.Execute(comp) |