diff options
author | Timo Teräs <timo.teras@iki.fi> | 2012-01-12 14:33:29 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2012-01-12 14:33:29 +0200 |
commit | 1f9a36de6828b87ba9d7dedcae2de6092eed4f41 (patch) | |
tree | f928b3e94711951f603624a19924c290da362b8a /src/lua-apk.c | |
parent | 30965aa86735f7d2dcd544bae0b788195c51f336 (diff) | |
download | apk-tools-1f9a36de6828b87ba9d7dedcae2de6092eed4f41.tar.gz apk-tools-1f9a36de6828b87ba9d7dedcae2de6092eed4f41.tar.bz2 apk-tools-1f9a36de6828b87ba9d7dedcae2de6092eed4f41.tar.xz apk-tools-1f9a36de6828b87ba9d7dedcae2de6092eed4f41.zip |
db: support line feed as 'world' dependency separator
* default writing the world with spaces if a space is found
(for backwards compatibility) for now
Diffstat (limited to 'src/lua-apk.c')
-rw-r--r-- | src/lua-apk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua-apk.c b/src/lua-apk.c index e41e785..6fbd1cf 100644 --- a/src/lua-apk.c +++ b/src/lua-apk.c @@ -208,7 +208,7 @@ static int Papk_exists(lua_State *L) apk_blob_t blob = APK_BLOB_STR(depstr); apk_blob_pull_dep(&blob, db, &dep); - if (APK_BLOB_IS_NULL(blob)) + if (APK_BLOB_IS_NULL(blob) || b.len > 0) goto ret_nil; name = dep.name; |