* configure.ac (emacs_config_options): Strip out the (internal) arguments
--no-create and --no-recursion.
This commit is contained in:
parent
0ccdf61ed6
commit
8b0590de7e
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-02-10 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* configure.ac (emacs_config_options): Strip out the (internal)
|
||||
arguments --no-create and --no-recursion.
|
||||
|
||||
2013-02-08 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Merge from gnulib, incorporating:
|
||||
|
|
|
@ -4087,7 +4087,7 @@ fi
|
|||
AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}",
|
||||
[Define to the canonical Emacs configuration name.])
|
||||
dnl Replace any embedded " characters (bug#13274).
|
||||
emacs_config_options=`echo "$emacs_config_options" | sed -e "s/\"/'/g"`
|
||||
emacs_config_options=`echo "$emacs_config_options " | sed -e 's/--no-create //' -e 's/--no-recursion //' -e 's/ *$//' -e "s/\"/'/g"`
|
||||
AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${emacs_config_options}",
|
||||
[Define to the options passed to configure.])
|
||||
AH_TEMPLATE(config_opsysfile, [Some platforms that do not use configure
|
||||
|
|
Loading…
Add table
Reference in a new issue