diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-10-03 13:37:16 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-03 13:45:03 +0100 |
commit | c26542eb4e8707b9639ec309a44809a728839db8 (patch) | |
tree | 1127008340553f13ed312435d6473d0f2471dc53 /meta/recipes-devtools/rpm/rpmresolve | |
parent | 1600c916ae410c57a783a5aa35abe07a3f673311 (diff) | |
download | openembedded-core-contrib-c26542eb4e8707b9639ec309a44809a728839db8.tar.gz |
rpmresolve: fix reporting of multiple matches error
We were mistakenly writing what was meant to go to stderr into the
output file, so when the "Multiple matches" error showed we weren't
actually seeing the matches printed.
Also change the wording of the "Unable to find package..." to "Unable
to resolve package..." instead so that it makes more sense if it is
printed after the "Multiple matches" error.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/rpm/rpmresolve')
-rw-r--r-- | meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c b/meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c index 3613ee5a8d6..4e9d055f24d 100644 --- a/meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c +++ b/meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c @@ -185,7 +185,7 @@ int processPackages(rpmts *ts, int tscount, const char *packagelistfn, int ignor char *value = NULL; rc = getPackageStr(ts[i], keys[keyindex], RPMTAG_PACKAGEORIGIN, &value); if(rc == 0) - fprintf(outf, " %s\n", value); + fprintf(stderr, " %s\n", value); else fprintf(stderr, " (%s)\n", keys[keyindex]); } @@ -197,10 +197,10 @@ int processPackages(rpmts *ts, int tscount, const char *packagelistfn, int ignor if( !found ) { if( ignoremissing ) { - fprintf(stderr, "unable to find package %s - ignoring\n", line); + fprintf(stderr, "Unable to resolve package %s - ignoring\n", line); } else { - fprintf(stderr, "unable to find package %s\n", line); + fprintf(stderr, "Unable to resolve package %s\n", line); missing = 1; } } |