summaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2006-08-04 13:42:00 +0000
committerNathan Scott <nathans@sgi.com>2006-08-04 13:42:00 +0000
commit7eac835b576cea488f34260835a6a7cbe2c0198a (patch)
tree353bf194a71bbf2c56f39873204dbae7daea3ac2 /aclocal.m4
parentb4156957abb3ab29bbe229f80869ad5a290dd3d9 (diff)
Merge the uid/gid username/groupname install target fixup to all packages.
Merge of master-melb:xfs-cmds:26582a by kenmcd.
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 0f40c0a1..dd65e1cd 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -199,7 +199,7 @@ AC_DEFUN([AC_PACKAGE_WANT_GDBM],
AC_SUBST(have_db)
])
-#
+#
# Generic macro, sets up all of the global packaging variables.
# The following environment variables may be set to override defaults:
# DEBUG OPTIMIZER MALLOCLIB PLATFORM DISTRIBUTION INSTALL_USER INSTALL_GROUP
@@ -228,11 +228,11 @@ AC_DEFUN([AC_PACKAGE_GLOBALS],
malloc_lib="$MALLOCLIB"
AC_SUBST(malloc_lib)
- pkg_user=`id -u`
+ pkg_user=`id -u -n`
test -z "$INSTALL_USER" || pkg_user="$INSTALL_USER"
AC_SUBST(pkg_user)
- pkg_group=`id -g`
+ pkg_group=`id -g -n`
test -z "$INSTALL_GROUP" || pkg_group="$INSTALL_GROUP"
AC_SUBST(pkg_group)