summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2009-05-28 08:59:59 +0000
committerjoerg <joerg@pkgsrc.org>2009-05-28 08:59:59 +0000
commitba8a170ad89238baf6f29a58979cc37c76791a84 (patch)
tree780902b2f6e3f2da8434e0f969e4b2500dba5ae5 /pkgtools
parent3912819f5c5be6fea0a8fe97beae5dcf33428d8c (diff)
downloadpkgsrc-ba8a170ad89238baf6f29a58979cc37c76791a84.tar.gz
pkg_install-20090528:
I can't remember why the original pkg_install-renovation code disabled extraction of ownership from packages, so reenable that.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkg_install/files/add/perform.c6
-rw-r--r--pkgtools/pkg_install/files/lib/version.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgtools/pkg_install/files/add/perform.c b/pkgtools/pkg_install/files/add/perform.c
index a0cac921217..18088fd13ed 100644
--- a/pkgtools/pkg_install/files/add/perform.c
+++ b/pkgtools/pkg_install/files/add/perform.c
@@ -1,4 +1,4 @@
-/* $NetBSD: perform.c,v 1.86 2009/04/24 14:00:25 joerg Exp $ */
+/* $NetBSD: perform.c,v 1.87 2009/05/28 08:59:59 joerg Exp $ */
#if HAVE_CONFIG_H
#include "config.h"
#endif
@@ -6,7 +6,7 @@
#if HAVE_SYS_CDEFS_H
#include <sys/cdefs.h>
#endif
-__RCSID("$NetBSD: perform.c,v 1.86 2009/04/24 14:00:25 joerg Exp $");
+__RCSID("$NetBSD: perform.c,v 1.87 2009/05/28 08:59:59 joerg Exp $");
/*-
* Copyright (c) 2003 Grant Beattie <grant@NetBSD.org>
@@ -601,7 +601,7 @@ copy_data_to_disk(struct archive *reader, struct archive *writer,
* Any misordered, missing or unlisted file in the package is an error.
*/
-static const int extract_flags = /* ARCHIVE_EXTRACT_OWNER | */
+static const int extract_flags = ARCHIVE_EXTRACT_OWNER |
ARCHIVE_EXTRACT_PERM | ARCHIVE_EXTRACT_TIME | ARCHIVE_EXTRACT_UNLINK |
ARCHIVE_EXTRACT_ACL | ARCHIVE_EXTRACT_FFLAGS | ARCHIVE_EXTRACT_XATTR;
diff --git a/pkgtools/pkg_install/files/lib/version.h b/pkgtools/pkg_install/files/lib/version.h
index a76976bf3b3..69034757ca1 100644
--- a/pkgtools/pkg_install/files/lib/version.h
+++ b/pkgtools/pkg_install/files/lib/version.h
@@ -1,4 +1,4 @@
-/* $NetBSD: version.h,v 1.129 2009/05/27 20:26:03 joerg Exp $ */
+/* $NetBSD: version.h,v 1.130 2009/05/28 08:59:59 joerg Exp $ */
/*
* Copyright (c) 2001 Thomas Klausner. All rights reserved.
@@ -27,6 +27,6 @@
#ifndef _INST_LIB_VERSION_H_
#define _INST_LIB_VERSION_H_
-#define PKGTOOLS_VERSION "20090527"
+#define PKGTOOLS_VERSION "20090528"
#endif /* _INST_LIB_VERSION_H_ */