mirror of
git://git.sv.gnu.org/autoconf
synced 2024-11-27 01:49:56 +08:00
* lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
_AS_MKDIR_P_PREPARE.
This commit is contained in:
parent
980c227c4b
commit
3aec90e1cb
@ -1,3 +1,8 @@
|
||||
2002-04-02 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
|
||||
_AS_MKDIR_P_PREPARE.
|
||||
|
||||
2002-03-28 Kevin Ryde <user42@zip.com.au>
|
||||
|
||||
* lib/autoconf/c.m4 (AC_C_INLINE): Test with a typedef return value,
|
||||
|
5
NEWS
5
NEWS
@ -4,6 +4,11 @@
|
||||
|
||||
- autoreconf is adjusted to GNU Gettext 0.11.
|
||||
|
||||
** Bug fixes
|
||||
|
||||
- config.status 2.53 may fail on some architectures where `mkdir -p'
|
||||
fails on existing directories.
|
||||
|
||||
|
||||
* Major changes in Autoconf 2.53
|
||||
|
||||
|
@ -137,6 +137,17 @@ m4_define([AS_REQUIRE],
|
||||
# AS_SHELL_SANITIZE
|
||||
# -----------------
|
||||
# Try to be as Bourne and/or POSIX as possible.
|
||||
#
|
||||
# This macro has a very special status. Normal use of M4sh relies
|
||||
# heavily on AS_REQUIRE, so that needed initiatizations (such as
|
||||
# _AS_TEST_PREPARE) are performed on need, not on demand. But
|
||||
# Autoconf is the first client of M4sh, and for two reasons: configure
|
||||
# and config.status. Relying on AS_REQUIRE is of course fine for
|
||||
# configure, but fails for config.status (which is created by
|
||||
# configure). So we need a means to force the inclusion of the
|
||||
# various _AS_PREPARE_* on top of config.status. That's basically why
|
||||
# there are so many _AS_PREPARE_* below, and that's also why it is
|
||||
# important not to forget some: config.status needs them.
|
||||
m4_defun([AS_SHELL_SANITIZE],
|
||||
[
|
||||
## --------------------- ##
|
||||
@ -173,6 +184,7 @@ _AS_LINENO_PREPARE
|
||||
_AS_ECHO_N_PREPARE
|
||||
_AS_EXPR_PREPARE
|
||||
_AS_LN_S_PREPARE
|
||||
_AS_MKDIR_P_PREPARE
|
||||
_AS_TEST_PREPARE
|
||||
_AS_TR_CPP_PREPARE
|
||||
_AS_TR_SH_PREPARE
|
||||
|
Loading…
Reference in New Issue
Block a user