diff options
author | ewt <devnull@localhost> | 1998-04-16 16:25:03 +0000 |
---|---|---|
committer | ewt <devnull@localhost> | 1998-04-16 16:25:03 +0000 |
commit | fded3f9abc235a876bb53fc3fc8bf1ab897e2d11 (patch) | |
tree | a131fae9ff5bc19476e8339f2db3348714d673e1 | |
parent | 272e203dabf2ebbd2b3a75a53415d87928d5f820 (diff) | |
download | librpm-tizen-fded3f9abc235a876bb53fc3fc8bf1ab897e2d11.tar.gz librpm-tizen-fded3f9abc235a876bb53fc3fc8bf1ab897e2d11.tar.bz2 librpm-tizen-fded3f9abc235a876bb53fc3fc8bf1ab897e2d11.zip |
pay attention to autoreqprov flag
CVS patchset: 2092
CVS date: 1998/04/16 16:25:03
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | build/reqprov.c | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,8 @@ -2.4.109 -> 2.4.110: +2.4.109 -> 2.5: - fixed return code bug in build code - do macro expansion before %if processing + - dep ordering returns w/ an error as soon as a prereq loop is found + - autoreqprov flag was being ignored during builds 2.4.108 -> 2.4.109: - remove icons with --rmsource diff --git a/build/reqprov.c b/build/reqprov.c index 2ea609fa0..baa6e5378 100644 --- a/build/reqprov.c +++ b/build/reqprov.c @@ -107,7 +107,7 @@ int generateAutoReqProv(Spec spec, Package pkg, char *argv[2]; char **f, **fsave; - if (!cpioCount) { + if (!cpioCount || !spec->autoReqProv) { return 0; } |