Standardize on '.mozconfig' for configure script name.

This commit is contained in:
slamm%netscape.com 1999-03-22 20:42:58 +00:00
Родитель 8a7112f1a4
Коммит 760e2eff5c
5 изменённых файлов: 13 добавлений и 12 удалений

Просмотреть файл

@ -94,7 +94,7 @@ define(MOZ_ARG_HEADER, [# $1])
dnl MOZ_READ_MYCONFIG() - Read in 'myconfig.sh' file
AC_DEFUN(MOZ_READ_MOZCONFIG,
[AC_REQUIRE([AC_INIT_BINSH])dnl
# Read in 'mozconfig.sh' script to set the initial options.
# Read in '.mozconfig' script to set the initial options.
# See the load-mozconfig.sh script for more details.
TOPSRCDIR=`dirname [$]0`
PATH="$TOPSRCDIR/build/autoconf:$PATH"

Просмотреть файл

@ -16,17 +16,18 @@
# Reserved.
#
# find-mozconfig.sh - Loads options from mozconfig.sh onto configure's
# command-line. The mozconfig.sh file is searched for in the
# find-mozconfig.sh - Loads options from .mozconfig onto configure's
# command-line. The .mozconfig file is searched for in the
# order:
# if $MOZCONFIG is set, use that.
# Otherwise, use $TOPSRCDIR/mozconfig.sh
# Otherwise, use $HOME/.mozconfig.sh
# Otherwise, use $TOPSRCDIR/.mozconfig
# Otherwise, use $HOME/.mozconfig
#
topsrcdir=`cd \`dirname $0\`/../..; pwd`
for _config in $MOZCONFIG \
$MOZ_MYCONFIG \
$topsrcdir/.mozconfig \
$topsrcdir/mozconfig \
$topsrcdir/mozconfig.sh \
$topsrcdir/myconfig.sh \

Просмотреть файл

@ -16,15 +16,15 @@
# Reserved.
#
# load-mozconfig.sh - Loads options from mozconfig.sh onto configure's
# load-mozconfig.sh - Loads options from .mozconfig onto configure's
# command-line. See find-mozconfig.sh for how the config file is
# found
#
# The options from mozconfig.sh are inserted into the command-line
# The options from .mozconfig are inserted into the command-line
# before the real command-line options. This way the real options
# will override any mozconfig.sh options.
# will override any .mozconfig options.
#
# mozconfig.sh is a shell script. To add an option to configure's
# .mozconfig is a shell script. To add an option to configure's
# command-line use the pre-defined function, ac_add_options,
#
# ac_add_options <configure-option> [<configure-option> ... ]
@ -33,7 +33,7 @@
#
# ac_add_options --with-pthreads --enable-debug
#
# ac_add_options can be called multiple times in mozconfig.sh.
# ac_add_options can be called multiple times in .mozconfig.
# Each call adds more options to configure's command-line.
#
# Send comments, improvements, bugs to Steve Lamm (slamm@netscape.com).

Просмотреть файл

@ -16,7 +16,7 @@
# Reserved.
#
# mozconfig2defs.sh - Translates mozconfig.sh into options for client.mk.
# mozconfig2defs.sh - Translates .mozconfig into options for client.mk.
# Prints defines to stdout.
#
# See load-mozconfig.sh for more details

Просмотреть файл

@ -16,7 +16,7 @@
# Reserved.
#
# mozconfig2defs.sh - Translates mozconfig.sh into options for client.mk.
# mozconfig2defs.sh - Translates .mozconfig into options for client.mk.
# Prints defines to stdout.
#
# See load-mozconfig.sh for more details