Index: usr.sbin/pkg_install =================================================================== --- usr.sbin/pkg_install (revision 240615) +++ usr.sbin/pkg_install (working copy) Property changes on: usr.sbin/pkg_install ___________________________________________________________________ Modified: svn:mergeinfo Merged /head/usr.sbin/pkg_install:r240476 Index: usr.sbin/pkg_install/lib/lib.h =================================================================== --- usr.sbin/pkg_install/lib/lib.h (revision 240615) +++ usr.sbin/pkg_install/lib/lib.h (working copy) @@ -99,7 +99,7 @@ * Version of the package tools - increase whenever you make a change * in the code that is not cosmetic only. */ -#define PKG_INSTALL_VERSION 20120530 +#define PKG_INSTALL_VERSION 20120913 #define PKG_WRAPCONF_FNAME "/var/db/pkg_install.conf" #define main(argc, argv) real_main(argc, argv) Index: usr.sbin/pkg_install/add =================================================================== --- usr.sbin/pkg_install/add (revision 240615) +++ usr.sbin/pkg_install/add (working copy) Property changes on: usr.sbin/pkg_install/add ___________________________________________________________________ Modified: svn:mergeinfo Merged /head/usr.sbin/pkg_install/add:r240476 Index: usr.sbin/pkg_install/add/perform.c =================================================================== --- usr.sbin/pkg_install/add/perform.c (revision 240615) +++ usr.sbin/pkg_install/add/perform.c (working copy) @@ -511,7 +511,7 @@ pkg_do(char *pkg) zapLogDir = 1; if (Verbose) printf("Attempting to record package into %s..\n", LogDir); - if (make_hierarchy(LogDir)) { + if (make_hierarchy(LogDir, FALSE)) { warnx("can't record package into '%s', you're on your own!", LogDir); bzero(LogDir, FILENAME_MAX); Index: usr.sbin/pkg_install/add/extract.c =================================================================== --- usr.sbin/pkg_install/add/extract.c (revision 240615) +++ usr.sbin/pkg_install/add/extract.c (working copy) @@ -225,7 +225,7 @@ extract_plist(const char *home, Package *pkg) printf("extract: CWD to %s\n", p->name); PUSHOUT(Directory); if (strcmp(p->name, ".")) { - if (!Fake && make_hierarchy(p->name) == FAIL) { + if (!Fake && make_hierarchy(p->name, TRUE) == FAIL) { cleanup(0); errx(2, "%s: unable to cwd to '%s'", __func__, p->name); } Index: usr.sbin/pkg_install/add/add.h =================================================================== --- usr.sbin/pkg_install/add/add.h (revision 240615) +++ usr.sbin/pkg_install/add/add.h (working copy) @@ -41,7 +41,7 @@ extern char *PkgAddCmd; extern char FirstPen[]; extern add_mode_t AddMode; -int make_hierarchy(char *); +int make_hierarchy(char *, Boolean); void extract_plist(const char *, Package *); void apply_perms(const char *, const char *); Index: usr.sbin/pkg_install/add/futil.c =================================================================== --- usr.sbin/pkg_install/add/futil.c (revision 240615) +++ usr.sbin/pkg_install/add/futil.c (working copy) @@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$"); */ int -make_hierarchy(char *dir) +make_hierarchy(char *dir, Boolean set_perm) { char *cp1, *cp2; @@ -55,7 +55,8 @@ int *cp2 = '/'; return FAIL; } - apply_perms(NULL, dir); + if (set_perm) + apply_perms(NULL, dir); } /* Put it back */ if (cp2) {