diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-04-04 20:37:48 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-04-09 08:18:38 +0300 |
commit | 29674e476a9477cdf8c7c38743b6441eacb5f011 (patch) | |
tree | 8b7972c19b7855b69b83c801dd02996d4e6f01ce /build/rpmbuild.h | |
parent | ddf46496b38cd30df54950816f6379239259d2b9 (diff) | |
download | librpm-tizen-29674e476a9477cdf8c7c38743b6441eacb5f011.tar.gz librpm-tizen-29674e476a9477cdf8c7c38743b6441eacb5f011.tar.bz2 librpm-tizen-29674e476a9477cdf8c7c38743b6441eacb5f011.zip |
Yet more url ripping - buildroot is never an url
- this is a bit nasty as it changes public interfaces but rename to make
it explicit they're just plain paths, not urls
Diffstat (limited to 'build/rpmbuild.h')
-rw-r--r-- | build/rpmbuild.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/rpmbuild.h b/build/rpmbuild.h index f554ea94f..d582e3b4d 100644 --- a/build/rpmbuild.h +++ b/build/rpmbuild.h @@ -366,8 +366,8 @@ int processSourceFiles(rpmSpec spec); * Parse spec file into spec control structure. * @param ts transaction set (spec file control in ts->spec) * @param specFile - * @param rootURL - * @param buildRootURL + * @param rootDir + * @param buildRoot * @param recursing parse is recursive? * @param passPhrase * @param cookie @@ -376,8 +376,8 @@ int processSourceFiles(rpmSpec spec); * @return */ int parseSpec(rpmts ts, const char * specFile, - const char * rootURL, - const char * buildRootURL, + const char * rootDir, + const char * buildRoot, int recursing, const char * passPhrase, const char * cookie, |