pkgtools

morpheus pkg tools
git clone git://git.2f30.org/pkgtools
Log | Files | Refs | README | LICENSE

commit 89a198c8e55c2da7551a237392fa796eb2a6fddf
parent 868cacb45c72f5a99c215ca2b530a47922dbd8ec
Author: sin <sin@2f30.org>
Date:   Fri, 20 Jun 2014 23:12:18 +0100

use the relative path for db entries

Diffstat:
Mdb.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/db.c b/db.c @@ -116,7 +116,7 @@ db_add(struct db *db, struct pkg *pkg) for (pe = pkg->head; pe; pe = pe->next) { if (vflag == 1) printf("installed %s\n", pe->path); - fputs(pe->path, fp); + fputs(pe->rpath, fp); fputc('\n', fp); }