1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

Let the C preprocessor concatenates CACHEDIR string

This commit is contained in:
Aurelien Foret 2005-03-20 22:04:20 +00:00
parent 73fa6fb9d9
commit 621e241279

View File

@ -127,7 +127,7 @@ static int sync_cleancache(int level)
for(i = clean; i; i = i->next) {
char path[PATH_MAX];
snprintf(path, PATH_MAX, "%s%s/%s", root, CACHEDIR, (char *)i->data);
snprintf(path, PATH_MAX, "%s"CACHEDIR"/%s", root, (char *)i->data);
unlink(path);
}
FREELIST(clean);
@ -137,7 +137,7 @@ static int sync_cleancache(int level)
mode_t oldmask;
char path[PATH_MAX];
snprintf(path, PATH_MAX, "%s%s", root, CACHEDIR);
snprintf(path, PATH_MAX, "%s"CACHEDIR, root);
printf("removing all packages from cache... ");
if(rmrf(path)) {