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/rpmspec.h | |
parent | ddf46496b38cd30df54950816f6379239259d2b9 (diff) | |
download | rpm-29674e476a9477cdf8c7c38743b6441eacb5f011.tar.gz rpm-29674e476a9477cdf8c7c38743b6441eacb5f011.tar.bz2 rpm-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/rpmspec.h')
-rw-r--r-- | build/rpmspec.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/rpmspec.h b/build/rpmspec.h index be8423321..e5a5245bf 100644 --- a/build/rpmspec.h +++ b/build/rpmspec.h @@ -93,9 +93,9 @@ char **sl_lines; */ struct rpmSpec_s { char * specFile; /*!< Name of the spec file. */ - char * buildRootURL; + char * buildRoot; char * buildSubdir; - char * rootURL; + char * rootDir; speclines sl; spectags st; @@ -119,7 +119,7 @@ struct rpmSpec_s { int force; int anyarch; - int gotBuildRootURL; + int gotBuildRoot; char * passPhrase; int timeCheck; |