There are some files that seems to be missing in recent trunk:
(tdelibs) libltdl directory is empty (tdebase) libkonq.cmake is missing
On Sun, Feb 26, 2012 at 11:27 AM, Aleksey Midenkov midenok@gmail.com wrote:
There are some files that seems to be missing in recent trunk:
(tdelibs) libltdl directory is empty (tdebase) libkonq.cmake is missing
What about this issue? I must emphasize that both trees are not buildable. You can check your tree with commands:
git reset --hard git clean --force
Be warned, that they delete files.
On 02/28/2012 07:45 AM, Aleksey Midenkov wrote:
On Sun, Feb 26, 2012 at 11:27 AM, Aleksey Midenkov midenok@gmail.com wrote:
There are some files that seems to be missing in recent trunk:
(tdelibs) libltdl directory is empty (tdebase) libkonq.cmake is missing
What about this issue? I must emphasize that both trees are not buildable. You can check your tree with commands:
git reset --hard git clean --force
Be warned, that they delete files.
I updated yesterday and I have the files you say are missing. Try this script in your git directory (change drankin to your git login):
#!/bin/bash
git reset --hard HEAD git clean -dxf git pull git reset --hard HEAD git clean -dxf sed -i "s/system@/drankin@/g" .gitmodules git submodule init git submodule update --recursive git submodule foreach --recursive "git checkout master" git submodule foreach --recursive "git pull" git checkout -- .gitmodules
exit 0
On Tue, Feb 28, 2012 at 6:15 PM, David C. Rankin drankinatty@suddenlinkmail.com wrote:
On 02/28/2012 07:45 AM, Aleksey Midenkov wrote:
On Sun, Feb 26, 2012 at 11:27 AM, Aleksey Midenkov midenok@gmail.com wrote:
There are some files that seems to be missing in recent trunk:
(tdelibs) libltdl directory is empty (tdebase) libkonq.cmake is missing
What about this issue? I must emphasize that both trees are not buildable. You can check your tree with commands:
git reset --hard git clean --force
Be warned, that they delete files.
I updated yesterday and I have the files you say are missing. Try this script in your git directory (change drankin to your git login):
#!/bin/bash
git reset --hard HEAD git clean -dxf git pull git reset --hard HEAD git clean -dxf sed -i "s/system@/drankin@/g" .gitmodules git submodule init git submodule update --recursive git submodule foreach --recursive "git checkout master" git submodule foreach --recursive "git pull" git checkout -- .gitmodules
exit 0
Yes, --recursive did the job for libltdl. Thank you! But libkonq.cmake is still missing. I have no Git account and just hit Enter on password prompt.
On 02/28/2012 01:19 PM, Aleksey Midenkov wrote:
Yes, --recursive did the job for libltdl. Thank you! But libkonq.cmake is still missing. I have no Git account and just hit Enter on password prompt.
If you have no account, then just change the sed line to:
sed -i "s/system@//g" .gitmodules
On Tue, Feb 28, 2012 at 11:34 PM, David C. Rankin drankinatty@suddenlinkmail.com wrote:
On 02/28/2012 01:19 PM, Aleksey Midenkov wrote:
Yes, --recursive did the job for libltdl. Thank you! But libkonq.cmake is still missing. I have no Git account and just hit Enter on password prompt.
If you have no account, then just change the sed line to:
sed -i "s/system@//g" .gitmodules
{mc}midenok:tdebase$ ../update.sh HEAD is now at 2d9396b Rename tqt3 color functions Already up-to-date. HEAD is now at 2d9396b Rename tqt3 color functions Entering 'admin' Already on 'master' Entering 'cmake' Already on 'master' Entering 'admin' Password: Already up-to-date. Entering 'cmake' Password: Already up-to-date. {mc}midenok:tdebase$ find -name libkonq.cmake | grep -q libkonq.cmake || echo "Alas, this not helped..." Alas, this not helped...
On Tue, Feb 28, 2012 at 11:34 PM, David C. Rankin drankinatty@suddenlinkmail.com wrote:
On 02/28/2012 01:19 PM, Aleksey Midenkov wrote:
Yes, --recursive did the job for libltdl. Thank you! But libkonq.cmake is still missing. I have no Git account and just hit Enter on password prompt.
If you have no account, then just change the sed line to:
sed -i "s/system@//g" .gitmodules
{mc}midenok:tdebase$ ../update.sh HEAD is now at 2d9396b Rename tqt3 color functions Already up-to-date. HEAD is now at 2d9396b Rename tqt3 color functions Entering 'admin' Already on 'master' Entering 'cmake' Already on 'master' Entering 'admin' Password: Already up-to-date. Entering 'cmake' Password: Already up-to-date. {mc}midenok:tdebase$ find -name libkonq.cmake | grep -q libkonq.cmake || echo "Alas, this not helped..." Alas, this not helped...
libkonq.cmake is a generated file and is not present in the GIT tree, but should be created when tdebase is compiled.
Tim