mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 13:23:08 +00:00
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])])
|
||
|
])
|