diff options
author | Jim Meyering <jim@meyering.net> | 2000-03-24 09:07:12 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-03-24 09:07:12 +0000 |
commit | b217f05541d22f6c2ec6bd8f0df7f7529134fbbb (patch) | |
tree | 8438f771e26f54c0f2b02aeb8595a7bf4729ec99 /m4 | |
parent | 8c0a8b888f8507de99f841f2b4bc73b7896da432 (diff) | |
download | coreutils-b217f05541d22f6c2ec6bd8f0df7f7529134fbbb.tar.xz |
(jm_MACROS): Invoke `AC_CONFIG_AUX_DIR(.)' to work
around bug that made cvs-automake complain it couldn't find lib/depcomp.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/jm-macros.m4 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/m4/jm-macros.m4 b/m4/jm-macros.m4 index a991628ee..d60f2d537 100644 --- a/m4/jm-macros.m4 +++ b/m4/jm-macros.m4 @@ -1,4 +1,4 @@ -#serial 13 +#serial 14 dnl Misc type-related macros for fileutils, sh-utils, textutils. @@ -6,6 +6,10 @@ AC_DEFUN(jm_MACROS, [ AC_PREREQ(2.14a) + # Kludge to work around bug in latest cvs automake. + # FIXME: remove this directive once the bug is fixed. + AC_CONFIG_AUX_DIR(.) + GNU_PACKAGE="GNU $PACKAGE" AC_DEFINE_UNQUOTED(GNU_PACKAGE, "$GNU_PACKAGE", [The concatenation of the strings `GNU ', and PACKAGE.]) @@ -16,7 +20,7 @@ AC_DEFUN(jm_MACROS, AC_SUBST(MAN) AC_SUBST(DF_PROG) - dnl This macro actually runs replacement code. See isc-posix.m4. + # This macro actually runs replacement code. See isc-posix.m4. AC_REQUIRE([AC_ISC_POSIX])dnl AC_CHECK_HEADERS( \ |