diff options
author | Karel Zak <kzak@redhat.com> | 2007-08-14 14:32:45 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2007-08-14 14:32:45 +0200 |
commit | f3831bbd801135d7e618725cdfd7ff99f52e33a6 (patch) | |
tree | c82abe1e7e593297558cce310ed74644f542013f /configure.ac | |
parent | dcb219b313b595dea375ec6758641bb09845d8a4 (diff) | |
download | util-linux-old-f3831bbd801135d7e618725cdfd7ff99f52e33a6.tar.gz |
build-sys: add --disable-makeinstall-chown
A chown-like operations are unexpected when you execute "make install"
as non-root user. For example RPM defines owner+permissions in .spec
file -- you needn't to use root account to create useful RPM package.
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f0756ac2..36923703 100644 --- a/configure.ac +++ b/configure.ac @@ -476,6 +476,12 @@ if test x$enable_use_tty_group = xyes; then AC_DEFINE(USE_TTY_GROUP, 1, [Should wall and write be installed setgid tty?]) fi +AC_ARG_ENABLE([makeinstall-chown], + AS_HELP_STRING([--disable-makeinstall-chown], [do not do chown-like operations during "make install"]), + [], enable_makeinstall_chown=yes +) +AM_CONDITIONAL(MAKEINSTALL_DO_CHOWN, test x$enable_makeinstall_chown = xyes) + AC_ARG_VAR([SUID_CFLAGS], [CFLAGS used for binaries which are usually with the suid bit]) |