]> git.pld-linux.org Git - packages/rpm.git/blame_incremental - rpm-error-fatal.patch
- updated for 4.4.9 (but probably not needed at all)
[packages/rpm.git] / rpm-error-fatal.patch
... / ...
CommitLineData
1+---------------------------------------------------------------------------
2| Make sure that an %{error:<msg>} macro really stops further
3| processing. Else it would be nothing more than a %{warn:<msg>}.
4+---------------------------------------------------------------------------
5--- rpm-4.4.2/rpmio/macro.c~ 2007-03-07 18:50:42.754005171 +0200
6+++ rpm-4.4.2/rpmio/macro.c 2007-03-07 18:55:51.040958707 +0200
7@@ -1380,7 +1380,7 @@
8 STREQ("error", f, fn)) {
9 int waserror = 0;
10 if (STREQ("error", f, fn))
11- waserror = 1;
12+ waserror = 1, rc = 1;
13 if (g != NULL && g < ge)
14 doOutput(mb, waserror, g, gn);
15 else
This page took 0.032706 seconds and 4 git commands to generate.