mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Make GNUSTEP_NETWORK_ROOT the same as GNUSTEP_LOCAL_ROOT
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@18821 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
15b3c82065
commit
c4be36062e
1 changed files with 11 additions and 3 deletions
14
configure.ac
14
configure.ac
|
@ -1,11 +1,12 @@
|
|||
#
|
||||
# configure.ac
|
||||
#
|
||||
# Copyright (C) 1997 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1997-2004 Free Software Foundation, Inc.
|
||||
#
|
||||
# Author: Scott Christley <scottc@net-community.com>
|
||||
# Ovidiu Predescu <ovidiu@net-community.com>
|
||||
# Rewrite: Adam Fedor <fedor@gnu.org>
|
||||
# Nicola Pero <n.pero@mi.flashnet.it>
|
||||
#
|
||||
# This file is part of the GNUstep Makefile Package.
|
||||
#
|
||||
|
@ -231,11 +232,18 @@ AC_MSG_CHECKING(for GNUSTEP_NETWORK_ROOT to use)
|
|||
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:
|
||||
to have the GNUSTEP_NETWORK_ROOT directory. Example:
|
||||
--with-network-root=/usr/local/GNUstep/Network
|
||||
],
|
||||
GNUSTEP_NETWORK_ROOT="$withval",
|
||||
GNUSTEP_NETWORK_ROOT="$GNUSTEP_ROOT/Network"
|
||||
# By default we disable network root, by setting GNUSTEP_NETWORK_ROOT
|
||||
# to be the same as GNUSTEP_LOCAL_ROOT. GNUSTEP_NETWORK_ROOT is very
|
||||
# rarely used, and most users prefer simpler systems with shorter
|
||||
# paths and shorter command lines. To turn on GNUSTEP_NETWORK_ROOT
|
||||
# again, you can use the --with-network-root=xxx option; pass
|
||||
# something like --with-network-root=/usr/GNUstep/Network on the
|
||||
# configure command line.
|
||||
GNUSTEP_NETWORK_ROOT="$GNUSTEP_LOCAL_ROOT"
|
||||
)
|
||||
AC_MSG_RESULT($GNUSTEP_NETWORK_ROOT)
|
||||
|
||||
|
|
Loading…
Reference in a new issue