diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2012-05-31 15:40:51 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2012-05-31 16:45:32 +0300 |
commit | 38932d1d175b8ff8a509d2d9995ffb3eb576ff3a (patch) | |
tree | 89924a83fefae28953ad4364bde17eee0108c1b6 /build | |
parent | a6821de78318570df9c6a86cd34db4bd037b48a2 (diff) | |
download | librpm-tizen-38932d1d175b8ff8a509d2d9995ffb3eb576ff3a.tar.gz librpm-tizen-38932d1d175b8ff8a509d2d9995ffb3eb576ff3a.tar.bz2 librpm-tizen-38932d1d175b8ff8a509d2d9995ffb3eb576ff3a.zip |
Export our own version of glob_pattern_p() as rpmIsGlob()
- Further preliminaries to hiding the glob() implementation
Diffstat (limited to 'build')
-rw-r--r-- | build/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/files.c b/build/files.c index 349355723..f42110ac6 100644 --- a/build/files.c +++ b/build/files.c @@ -1597,7 +1597,7 @@ static rpmRC processBinaryFile(Package pkg, FileList fl, const char * fileName) if (trailing_slash && !fl->cur.isDir) fl->cur.isDir = -1; - doGlob = glob_pattern_p(fileName, quote); + doGlob = rpmIsGlob(fileName, quote); /* Check that file starts with leading "/" */ if (*fileName != '/') { |