diff options
author | Ralph Hempel <ralph.hempel@lantiq.com> | 2008-03-20 17:08:24 +0000 |
---|---|---|
committer | Ralph Hempel <ralph.hempel@lantiq.com> | 2008-03-20 17:08:24 +0000 |
commit | e5baf6bef849d2e590f9b11343892ad2468d44b5 (patch) | |
tree | 02db08ae3f4022ffc4abd0fd34bc68cf6249ff02 /scripts | |
parent | ccdf22edff25608249845ea781c575cc29646b09 (diff) | |
download | upstream-e5baf6bef849d2e590f9b11343892ad2468d44b5.tar.gz upstream-e5baf6bef849d2e590f9b11343892ad2468d44b5.tar.bz2 upstream-e5baf6bef849d2e590f9b11343892ad2468d44b5.zip |
fix package/symlinks target, will call scripts/feeds update / install
introduce new package/symlinks-install and package/symlinks-clean targets
- package/symlink-install will re-create the index files and the symlinks for all ./feeds (no update from repositories is performed)
- package/symlink-clean will delete all installed symlinks (keeping the ./feeds untouched)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10634 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/feeds | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/feeds b/scripts/feeds index 3c6c05064f..4176c31f32 100755 --- a/scripts/feeds +++ b/scripts/feeds @@ -238,15 +238,17 @@ sub install_package { $feed = lookup_package($feed, $name); $feed or do { $installed{$name} and return 0; - warn "WARNING: No feed for package '$name' found.\n"; - return 1; + # TODO: check if it's already installed within ./package directory + warn "WARNING: No feed for package '$name' found, maybe it's already part of the standard packages?\n"; + return 0; }; my $pkg = $feed{$feed->[1]}->{$name} or return 1; $pkg->{name} or do { $installed{$name} and return 0; + # TODO: check if this is an alias package, maybe it's known by another name warn "WARNING: Package '$name' is not available in feed $feed->[1].\n"; - return 1; + return 0; }; my $src = $pkg->{src}; my $type = $feed->[0]; @@ -327,8 +329,6 @@ sub install { my $p = $package{$name}; if( $p->{name} ) { install_package($feed, $p->{name}) == 0 or $ret = 1; - } else { - warn "WARNING: Package '$name' is not available\n"; } } } |