diff options
author | jbj <devnull@localhost> | 1999-04-17 14:23:42 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-04-17 14:23:42 +0000 |
commit | ba617e479df389ae2faf9866e92e365756ab2b6d (patch) | |
tree | 190671b4ed2dde4b5b54d25fb87f382862680faf /build.h | |
parent | 68b321a44fb9b043909747cccec51c53613dd347 (diff) | |
download | rpm-ba617e479df389ae2faf9866e92e365756ab2b6d.tar.gz rpm-ba617e479df389ae2faf9866e92e365756ab2b6d.tar.bz2 rpm-ba617e479df389ae2faf9866e92e365756ab2b6d.zip |
check build prerequisites before building from specfile.
CVS patchset: 3010
CVS date: 1999/04/17 14:23:42
Diffstat (limited to 'build.h')
-rw-r--r-- | build.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -9,7 +9,7 @@ extern struct poptOption rpmBuildPoptTable[]; struct rpmBuildArguments { int buildAmount; - char *buildRootOverride; + const char *buildRootOverride; char *targets; int useCatalog; int noLang; @@ -18,9 +18,9 @@ struct rpmBuildArguments { char buildChar; }; -int build(const char *arg, int buildAmount, const char *passPhrase, - const char *buildRoot, int fromTarball, int test, char *cookie, - const char * rcfile, char * buildplatforms, int force); +int build(const char *arg, struct rpmBuildArguments *ba, const char *passPhrase, + int fromTarball, char *cookie, const char * rcfile, int force, + int nodeps); #ifdef __cplusplus } |