Changeset 332 for trunk/configure


Ignore:
Timestamp:
03/24/10 11:09:47 (14 years ago)
Author:
bas
Message:

Added a new configure option --with-install_user

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure

    r325 r332  
    618618trac_user
    619619mta_user
     620install_user
    620621PYTHON
    621622PYTHON_VERSION
     
    637638EGREP
    638639DEBUG
    639 INSTALL_USER
    640640email2trac_conf
    641641SYSTEM_EMAIL2TRAC_CONF
     
    12201220  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
    12211221  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
     1222
     1223  --with-install_user=USER    Specify the name of the user that we must use for installation,
     1224                          default=root
    12221225
    12231226  --with-trac_user=USER    Specify the name of the user that trac use,
     
    16661669
    16671670
     1671
    16681672#DEBUG=0
    16691673
     
    32133217
    32143218
    3215 if test "x$INSTALL_USER" = "x";then
    3216   INSTALL_USER="root"
    3217 fi
    3218 
     3219# What user must be used for installation (default: root)
     3220#
     3221
     3222# Check whether --with-install_user was given.
     3223if test "${with_install_user+set}" = set; then
     3224  withval=$with_install_user; case "${withval}" in
     3225        *) install_user="${withval}" ;;
     3226  esac
     3227else
     3228  install_user="root"
     3229
     3230fi
    32193231
    32203232# Now a user can specify the TRAC user
     
    39353947trac_user!$trac_user$ac_delim
    39363948mta_user!$mta_user$ac_delim
     3949install_user!$install_user$ac_delim
    39373950PYTHON!$PYTHON$ac_delim
    39383951PYTHON_VERSION!$PYTHON_VERSION$ac_delim
     
    39543967EGREP!$EGREP$ac_delim
    39553968DEBUG!$DEBUG$ac_delim
    3956 INSTALL_USER!$INSTALL_USER$ac_delim
    39573969email2trac_conf!$email2trac_conf$ac_delim
    39583970SYSTEM_EMAIL2TRAC_CONF!$SYSTEM_EMAIL2TRAC_CONF$ac_delim
Note: See TracChangeset for help on using the changeset viewer.