diff options
author | jlam <jlam> | 2006-04-25 22:35:46 +0000 |
---|---|---|
committer | jlam <jlam> | 2006-04-25 22:35:46 +0000 |
commit | 89c9b1c1ee54535370087e654cd76f210fda91e0 (patch) | |
tree | e07a049a7bb6b53c58269bc5758f98fc66a7e6ef | |
parent | 16a7c35202adf41722becb9f782bf8223f0bf5d3 (diff) | |
download | pkgsrc-89c9b1c1ee54535370087e654cd76f210fda91e0.tar.gz |
Rename the test directory to a more suggestive name.
-rw-r--r-- | mk/install/dirs | 4 | ||||
-rw-r--r-- | mk/install/files | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mk/install/dirs b/mk/install/dirs index 2681671eea1..581e93b038d 100644 --- a/mk/install/dirs +++ b/mk/install/dirs @@ -1,4 +1,4 @@ -# $NetBSD: dirs,v 1.13 2006/04/25 22:32:44 jlam Exp $ +# $NetBSD: dirs,v 1.14 2006/04/25 22:35:46 jlam Exp $ # # Generate a +DIRS script that reference counts directories that are # required for the proper functioning of the package. @@ -281,7 +281,7 @@ CHECK-REMOVE) ;; CHECK-PERMS) - tmpdir="${TMPDIR:-/tmp}/private.$$" + tmpdir="${TMPDIR:-/tmp}/pkginstall.$$" ${MKDIR} -p $tmpdir 2>/dev/null || exit 1 ${CHMOD} 700 $tmpdir ${SED} -n "/^\# DIR: /{s/^\# DIR: //;p;}" ${SELF} | ${SORT} -ru | diff --git a/mk/install/files b/mk/install/files index 81030105847..aa41df32d24 100644 --- a/mk/install/files +++ b/mk/install/files @@ -1,4 +1,4 @@ -# $NetBSD: files,v 1.12 2006/04/25 20:12:35 jlam Exp $ +# $NetBSD: files,v 1.13 2006/04/25 22:35:46 jlam Exp $ # # Generate a +FILES script that reference counts config files that are # required for the proper functioning of the package. @@ -365,7 +365,7 @@ CHECK-REMOVE) ;; CHECK-PERMS) - tmpdir="${TMPDIR:-/tmp}/private.$$" + tmpdir="${TMPDIR:-/tmp}/pkginstall.$$" ${MKDIR} -p $tmpdir 2>/dev/null || exit 1 ${CHMOD} 700 $tmpdir ${SED} -n "/^\# FILE: /{s/^\# FILE: //;p;}" ${SELF} | ${SORT} -ru | |