diff options
-rw-r--r-- | pkgtools/pkg_install/files/create/perform.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/pkg_install/files/create/perform.c b/pkgtools/pkg_install/files/create/perform.c index a6b47a7c376..b07d925c90e 100644 --- a/pkgtools/pkg_install/files/create/perform.c +++ b/pkgtools/pkg_install/files/create/perform.c @@ -1,4 +1,4 @@ -/* $NetBSD: perform.c,v 1.17 2007/08/08 22:33:39 joerg Exp $ */ +/* $NetBSD: perform.c,v 1.18 2007/08/09 14:14:45 joerg Exp $ */ #if HAVE_CONFIG_H #include "config.h" @@ -11,7 +11,7 @@ #if 0 static const char *rcsid = "from FreeBSD Id: perform.c,v 1.38 1997/10/13 15:03:51 jkh Exp"; #else -__RCSID("$NetBSD: perform.c,v 1.17 2007/08/08 22:33:39 joerg Exp $"); +__RCSID("$NetBSD: perform.c,v 1.18 2007/08/09 14:14:45 joerg Exp $"); #endif #endif @@ -68,7 +68,7 @@ register_depends(package_t *plist, char *deps, int build_only) printf("Registering depends:"); } while (deps) { - cp = strsep(&Pkgdeps, " \t\n"); + cp = strsep(&deps, " \t\n"); if (*cp) { char *best_installed; best_installed = find_best_matching_installed_pkg(cp); |