Browse Source

fix a recursive symlink issue with scripts/feeds and src-link

SVN-Revision: 10714
Felix Fietkau 18 years ago
parent
commit
1d3ed2fca0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/feeds

+ 1 - 1
scripts/feeds

@@ -83,7 +83,7 @@ sub update_link($$) {
 	my $name = shift;
 	my $src = abs_path(shift);
 
-	system("ln -sf $src ./feeds/$name");
+	system("rm -f ./feeds/$name; ln -s $src ./feeds/$name");
 
 	return 0;
 }