mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 13:50:47 +00:00
New options --with-local-root and --with-network-root
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@9179 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d147563bb1
commit
0856818f43
1 changed files with 26 additions and 0 deletions
26
configure.in
26
configure.in
|
@ -57,6 +57,32 @@ fi
|
|||
AC_SUBST(GNUSTEP_ROOT)
|
||||
AC_SUBST(root_prefix)
|
||||
|
||||
#--------------------------------------------------------------------
|
||||
# Process --with-local-root and --with-network-root options
|
||||
#--------------------------------------------------------------------
|
||||
|
||||
AC_ARG_WITH(local-root,[
|
||||
--with-local-root
|
||||
Set the GNUSTEP_LOCAL_ROOT directory. Use this option if you want
|
||||
to have the GNUSTEP_LOCAL_ROOT directory in a non-standard place. Example:
|
||||
--with-local-root=/usr/local/GNUstep/Local
|
||||
],
|
||||
GNUSTEP_LOCAL_ROOT=$withval,
|
||||
GNUSTEP_LOCAL_ROOT=$GNUSTEP_ROOT/Local
|
||||
)
|
||||
|
||||
AC_ARG_WITH(network-root,[
|
||||
--with-network-root
|
||||
Set the GNUSTEP_NETWORK_ROOT directory. Use this option if you want
|
||||
to have the GNUSTEP_NETWORK_ROOT directory in a non-standard place. Example:
|
||||
--with-network-root=/usr/local/GNUstep/Network
|
||||
],
|
||||
GNUSTEP_NETWORK_ROOT=$withval,
|
||||
GNUSTEP_NETWORK_ROOT=$GNUSTEP_ROOT/Local
|
||||
)
|
||||
|
||||
AC_SUBST(GNUSTEP_LOCAL_ROOT)
|
||||
AC_SUBST(GNUSTEP_NETWORK_ROOT)
|
||||
|
||||
#--------------------------------------------------------------------
|
||||
# Is the system flattened?
|
||||
|
|
Loading…
Reference in a new issue