I do not usually build kde, but I thoiught I might as well check that my scripts are up to date, and that nothing new has broken it.
At the end of Plasma5 the book has: cd $KF5_PREFIX/share/plasma/plasmoids for j in $(find -name \*.js); do as_root ln -sfv ../code/$(basename $j) $(dirname $j)/../ui/ done But for me, running as root that failed quickly: './org.kde.plasma.colorpicker/contents/ui/../ui/logic.js' -> '../code/logic.js' './org.kde.plasma.lock_logout/contents/ui/../ui/data.js' -> '../code/data.js' ln: target './org.kde.plasma.kicker/contents/ui/code/../ui/' is not a directory: No such file or directory Changing 'ln -sfv' to 'ls -l' and capturing the errors, I got: ls: cannot access '../code/logic.js': No such file or directory ls: cannot access '../code/data.js': No such file or directory ls: cannot access '../code/tools.js': No such file or directory ls: cannot access './org.kde.plasma.kicker/contents/ui/code/../ui/': No such file or directory ls: cannot access '../code/FolderTools.js': No such file or directory ls: cannot access './org.kde.desktopcontainment/contents/ui/code/../ui/': No such file or directory ls: cannot access '../code/LayoutManager.js': No such file or directory ls: cannot access './org.kde.desktopcontainment/contents/ui/code/../ui/': No such file or directory ls: cannot access '../code/tools.js': No such file or directory ls: cannot access './org.kde.plasma.kickoff/contents/ui/code/../ui/': No such file or directory ls: cannot access '../code/layout.js': No such file or directory ls: cannot access '../code/uiproperties.js': No such file or directory ls: cannot access '../code/tools.js': No such file or directory ls: cannot access './org.kde.plasma.taskmanager/contents/ui/code/../ui/': No such file or directory ls: cannot access '../code/layout.js': No such file or directory ls: cannot access './org.kde.plasma.taskmanager/contents/ui/code/../ui/': No such file or directory ls: cannot access '../code/LayoutManager.js': No such file or directory ls: cannot access '../code/logic.js': No such file or directory ls: cannot access '../code/logic.js': No such file or directory ls: cannot access '../code/globals.js': No such file or directory For the moment I've added '|| true' to the ln command, to allow me to move on. ĸen -- If a man stands before a mirror and sees in it his reflection, what he sees is not a true reproduction, but a picture of himself when he was a younger man. -- de Selby -- http://lists.linuxfromscratch.org/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
