mirror of
git://git.sv.gnu.org/autoconf
synced 2024-12-09 02:10:22 +08:00
e2e36c55ce
(edit). * m4sh.m4 (AS_UNAME): Eved out from... * acgeneral.m4 (_AC_INIT_DEFAULTS): here. (_AC_INIT_PACKAGE): Define AC_PACKAGE_NAME. (_AC_INIT_PARSE_ARGS): AC_SUBST the PACKAGE_ variables. Propagate their use in the executables and the test suite. * tests/atgeneral.m4 (PATH): Include only absolute paths. (AT_INIT): Use AS_UNAME.
17 lines
556 B
Plaintext
17 lines
556 B
Plaintext
## ----------------------## -*- Autoconf -*-
|
|
## Prepare for testing. ##
|
|
## ----------------------##
|
|
|
|
#serial 3
|
|
|
|
# AT_CONFIG([AUTOTEST-PATH = .])
|
|
# ------------------------------
|
|
# Configure the test suite.
|
|
#
|
|
# AUTOTEST-PATH must help the test suite to find the executables, i.e.,
|
|
# if the test suite is in `tests/' and the executables are in `src/',
|
|
# pass `../src'. If there are also executables in the source tree, use
|
|
# `../src:$top_srcdir/src'.
|
|
AC_DEFUN([AT_CONFIG],
|
|
[AC_SUBST([AUTOTEST_PATH], [m4_default([$1], [.])])])
|