From ad766cd5384677ea28b3797bc2e9f175200fecf5 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 16 Jun 2012 09:32:26 +0200 Subject: [PATCH] xbps-repo: fixed regression in the 'clean' target. --- bin/xbps-repo/clean.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/xbps-repo/clean.c b/bin/xbps-repo/clean.c index 7b0556af..88934fce 100644 --- a/bin/xbps-repo/clean.c +++ b/bin/xbps-repo/clean.c @@ -63,8 +63,8 @@ cachedir_clean(struct xbps_handle *xhp) /* Internalize props.plist dictionary from binary pkg */ binpkg = xbps_xasprintf("%s/%s", xhp->cachedir, dp->d_name); assert(binpkg != NULL); - pkg_propsd = - xbps_dictionary_metadata_plist_by_url(binpkg, XBPS_PKGPROPS); + pkg_propsd = xbps_dictionary_metadata_plist_by_url(binpkg, + "./props.plist"); if (pkg_propsd == NULL) { xbps_error_printf("Failed to read from %s: %s\n", dp->d_name, strerror(errno));