diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-12-15 16:03:18 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-12-15 16:03:18 +0200 |
commit | dc9c504ae6de92c84e272f4a6e4f68c350236e23 (patch) | |
tree | 110eadeb8315212704975cb37c8c6a23fbf46afc /build | |
parent | bc93e6bc874a8a07e33f7e77a8f09bde5588eeaf (diff) | |
download | librpm-tizen-dc9c504ae6de92c84e272f4a6e4f68c350236e23.tar.gz librpm-tizen-dc9c504ae6de92c84e272f4a6e4f68c350236e23.tar.bz2 librpm-tizen-dc9c504ae6de92c84e272f4a6e4f68c350236e23.zip |
Another bunch of bogus const removals
Diffstat (limited to 'build')
-rw-r--r-- | build/build.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/build.c b/build/build.c index fd3f37b2c..120ef42d6 100644 --- a/build/build.c +++ b/build/build.c @@ -54,9 +54,9 @@ rpmRC doScript(rpmSpec spec, rpmBuildFlags what, const char *name, StringBuf sb, const char *scriptName = NULL; char * buildDirURL = rpmGenPath(rootURL, "%{_builddir}", ""); const char * buildScript; - const char * buildCmd = NULL; - const char * buildTemplate = NULL; - const char * buildPost = NULL; + char * buildCmd = NULL; + char * buildTemplate = NULL; + char * buildPost = NULL; const char * mTemplate = NULL; const char * mCmd = NULL; const char * mPost = NULL; |