lib/package_remove.c: typo fix.

This commit is contained in:
Juan RP 2014-05-22 10:49:01 +02:00
parent 350852bf76
commit 0e7e2c0148

View File

@ -246,7 +246,7 @@ xbps_remove_pkg(struct xbps_handle *xhp, const char *pkgver, bool update)
}
/* internalize pkg dictionary from metadir */
snprintf(metafile, sizeof(metafile), "%s/%s.plist", xhp->metadir, pkgname);
snprintf(metafile, sizeof(metafile), "%s/.%s.plist", xhp->metadir, pkgname);
pkgd = xbps_dictionary_internalize_from_file(metafile);
if (pkgd == NULL)
xbps_dbg_printf(xhp, "WARNING: metaplist for %s "