mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-18 20:37:56 +00:00
896bc2d173
... which are then picked up via aclocal. Signed-off-by: Alexey Neyman <stilor@att.net>
11 lines
422 B
Plaintext
11 lines
422 B
Plaintext
# FIXME retire after 1.24
|
|
#
|
|
# CTNG_WITH_DEPRECATED(PROG, VAR)
|
|
# Declare a deprecated --with option: instead of --with-PROG=xxx, must use VAR=xxx
|
|
AC_DEFUN([CTNG_WITH_DEPRECATED],
|
|
[AC_ARG_WITH([$1],
|
|
[AS_HELP_STRING([--with-$1=PATH],
|
|
[Deprecated; use $2=PATH instead])],
|
|
[AC_MSG_ERROR([--with-$1=$withval deprecated; use $2=$withval instead])])
|
|
])
|