[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
PR/143 fix
From: |
Pavel Roskin |
Subject: |
PR/143 fix |
Date: |
Wed, 7 Mar 2001 00:43:51 -0500 (EST) |
Hello!
This should fix PR/143. It should be disallowed to call
AC_CONFIG_AUX_DIR_DEFAULT before AC_CONFIG_AUX_DIRS, since the former
renders the later useless.
ChangeLog:
* acgeneral.m4 (AC_CONFIG_AUX_DIR): Require to be
before AC_CONFIG_AUX_DIR_DEFAULT.
___________________________
--- acgeneral.m4
+++ acgeneral.m4
@@ -1742,7 +1742,8 @@
# in directory DIR. These are auxiliary files used in configuration.
# DIR can be either absolute or relative to $srcdir.
AC_DEFUN([AC_CONFIG_AUX_DIR],
-[AC_CONFIG_AUX_DIRS($1 $srcdir/$1)])
+[AC_BEFORE([$0], [AC_CONFIG_AUX_DIR_DEFAULT])dnl
+AC_CONFIG_AUX_DIRS($1 $srcdir/$1)])
# AC_CONFIG_AUX_DIR_DEFAULT
___________________________
Regards,
Pavel Roskin
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- PR/143 fix,
Pavel Roskin <=