mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-14 21:35:02 -05:00
used defines from alpm.h instead of local ones (patch from VMiklos <vmiklos@frugalware.org>)
This commit is contained in:
parent
0fe69d030b
commit
289b75d576
@ -122,7 +122,7 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(config->root == NULL) {
|
if(config->root == NULL) {
|
||||||
config->root = strdup(PACROOT);
|
config->root = strdup(PM_ROOT);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* add a trailing '/' if there isn't one */
|
/* add a trailing '/' if there isn't one */
|
||||||
@ -148,10 +148,10 @@ int main(int argc, char *argv[])
|
|||||||
cleanup(1);
|
cleanup(1);
|
||||||
}
|
}
|
||||||
if(config->dbpath == NULL) {
|
if(config->dbpath == NULL) {
|
||||||
config->dbpath = strdup(PACDB);
|
config->dbpath = strdup(PM_DBPATH);
|
||||||
}
|
}
|
||||||
if(config->cachedir == NULL) {
|
if(config->cachedir == NULL) {
|
||||||
config->cachedir = strdup(PACCACHE);
|
config->cachedir = strdup(PM_CACHEDIR);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* set library parameters */
|
/* set library parameters */
|
||||||
|
@ -21,9 +21,6 @@
|
|||||||
#ifndef _PM_PACMAN_H
|
#ifndef _PM_PACMAN_H
|
||||||
#define _PM_PACMAN_H
|
#define _PM_PACMAN_H
|
||||||
|
|
||||||
#define PACROOT "/"
|
|
||||||
#define PACDB "var/lib/pacman"
|
|
||||||
#define PACCACHE "var/cache/pacman"
|
|
||||||
#define PACCONF "/etc/pacman.conf"
|
#define PACCONF "/etc/pacman.conf"
|
||||||
|
|
||||||
/* Operations */
|
/* Operations */
|
||||||
|
Loading…
Reference in New Issue
Block a user