diff options
author | Timo Teras <timo.teras@iki.fi> | 2008-11-28 13:34:40 +0200 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2008-11-28 13:34:40 +0200 |
commit | 5ea81ca564534e4ef5eefbe723a74dbf490e6e07 (patch) | |
tree | 4b113c19fef609669d9e2db48a88d577b5e64eb3 /src/package.c | |
parent | 545a915fafbecbda0e278dfcc881984bd7a8b19b (diff) | |
download | apk-tools-5ea81ca564534e4ef5eefbe723a74dbf490e6e07.tar.gz apk-tools-5ea81ca564534e4ef5eefbe723a74dbf490e6e07.tar.bz2 apk-tools-5ea81ca564534e4ef5eefbe723a74dbf490e6e07.tar.xz apk-tools-5ea81ca564534e4ef5eefbe723a74dbf490e6e07.zip |
add: add support to install packages not in a repository
Diffstat (limited to 'src/package.c')
-rw-r--r-- | src/package.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/package.c b/src/package.c index 56f0f79..d419596 100644 --- a/src/package.c +++ b/src/package.c @@ -373,6 +373,7 @@ struct apk_package *apk_pkg_read(struct apk_database *db, const char *file) }; apk_deps_add(&ctx.pkg->depends, &dep); } + ctx.pkg->filename = strdup(file); return ctx.pkg; err: |