On 08/26/06 21:47, george webzary wrote:
> Hi
> 
> 
> I know this is unrelated to Django. But I guess I mucked up my django sym
> links, by linking it number of times.
> 
> How do I remove the multiple level of sym links. This is a Linux newbie
> question. But has me stumped.
> 
> When I run setup.py install from updated svn directory, I get this error
> 
> error:
> django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django/django:
> Too many levels of symbolic links
> 

Hi George

Looks like you have a symlink named django inside your django 
installation which points back to it self.

Try something like this:

cd /path/to/svn/checkout/django
ls -al

if you see a symlink in there named django remove it:

rm django


And all should be fine again.

hope this helps


ps: you can reproduce this kind of problem like this:

mkdir $HOME/test
cd /tmp/
ln -s $HOME/test test
cd /tmp/test
ln -s $HOME/test test

After that you'll have a endless hierarchy of symlinks.

e.g.
/tmp/test/test/test/test/..../test


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to