1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 19:43:16 +03:00

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

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10714 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2008-04-02 21:27:21 +00:00
parent abcbd32697
commit c50d2a30f6

View File

@ -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;
}