scripts/feeds: warn when skipping core package override

Otherwise, a n00b like myself can get quite confused when moving a
package from core to feeds, for example.

(Hint: one *really* needs to clear out the tmp/info/.packageinfo...
entries for the stale package, but '-f' works as well.)

Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
Brian Norris 2020-07-03 19:51:57 -07:00 committed by Paul Spooren
parent 3f165fa7cc
commit 7f285d0b43
1 changed files with 4 additions and 1 deletions

View File

@ -536,7 +536,10 @@ sub install_src {
# If it's a core package and we don't want to override, just return
my $override = 0;
if (is_core_src($name)) {
return 0 unless $force;
if (!$force) {
warn "Not overriding core package $name; use -f to force\n";
return 0;
}
$override = 1;
}