diff options
author | Aaron Griffin <aaron@archlinux.org> | 2007-02-21 06:44:14 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2007-02-21 06:44:14 +0000 |
commit | 436f36c76b74f7580da48e618dbdbd78037736fb (patch) | |
tree | 2ac3224aebed635bde3b6730c02cf3cbeb57f71c /lib/libalpm/alpm.h | |
parent | 1334f5c56c8394e69ad16f3b5269105e3dc42246 (diff) | |
download | pacman-436f36c76b74f7580da48e618dbdbd78037736fb.tar.xz |
* Re-added a compare function for syncpkg's - it was removed without thinking
properly
* Error when re-reading the DB for replacements, wrong info level
* Removed an duplicate debug message "checking for package replacements"
* Check ignorepkg for REAL upgrades...
* Properly check the NOSAVE flag
* some unlink_file (remove.c) cleanup
* fix indent level on handle.c
* Force libalpm paths to end with a '/' char
* Fixed 'target' looping in conflict.c (pmsyncpkg_t, not pmpkg_t)
* Added some debug output to cache and db scanning
** All pactest tests succeed again, yay **
Diffstat (limited to 'lib/libalpm/alpm.h')
-rw-r--r-- | lib/libalpm/alpm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index d4f6720f..5a71cd86 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -35,8 +35,8 @@ extern "C" { */ #define PM_ROOT "/" -#define PM_DBPATH "var/lib/pacman" -#define PM_CACHEDIR "var/cache/pacman/pkg" +#define PM_DBPATH "var/lib/pacman/" +#define PM_CACHEDIR "var/cache/pacman/pkg/" #define PM_LOCK "tmp/pacman.lck" |