Ken Zalewski wrote:

When building a Slackware package for Rosegarden4 1.2.3, I used "scons 
install DESTDIR=/build" for the final installation phase.

All of the files were correctly installed into /build/ *except for the 
icons*, which ended up getting installed into the existing 
/opt/kde/share/icons/ directory as follows:

------------------------

Here's a patch that fixes this issue

--- rosegarden4-1.2.3.orig/scons_admin/kde.py
+++ rosegarden4-1.2.3/scons_admin/kde.py
@@ -533,7 +533,7 @@
        def KDEinstallas(lenv, restype, destfile, file):
                if not env['_INSTALL']: return
                dir = getInstDirForResType(lenv, restype)
-               install_list = lenv.InstallAs(lenv.join(dir,destfile), file)
+               install_list = lenv.bksys_install(lenv.join(dir, destfile), 
[file], destfile)
                 env.Alias('install', install_list)
                return install_list
 




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
Rosegarden-devel mailing list
[email protected] - use the link below to unsubscribe
https://lists.sourceforge.net/lists/listinfo/rosegarden-devel

Reply via email to