mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 18:09:40 +01:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
19 lines
469 B
Diff
19 lines
469 B
Diff
|
|
#
|
|
# Patch managed by http://www.holgerschurig.de/patcher.html
|
|
#
|
|
|
|
--- C/ipkg_cmd.c~terse
|
|
+++ C/ipkg_cmd.c
|
|
@@ -148,9 +146,7 @@
|
|
int result;
|
|
p_userdata = userdata;
|
|
result = (cmd->fun)(conf, argc, argv);
|
|
- if ( result == 0 ) {
|
|
- ipkg_message(conf, IPKG_NOTICE, "Successfully terminated.\n");
|
|
- } else {
|
|
+ if ( result != 0 ) {
|
|
ipkg_message(conf, IPKG_NOTICE, "An error ocurred, return value: %d.\n", result);
|
|
}
|
|
|