mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
5839396028
Just add comment by: sed -i $'1i\\\n# -*- Autoconf -*-' tool/m4/*.m4 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61983 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
9 lines
331 B
Text
9 lines
331 B
Text
# -*- Autoconf -*-
|
|
AC_DEFUN([COLORIZE_RESULT], [AC_REQUIRE([_COLORIZE_RESULT_PREPARE])dnl
|
|
AS_LITERAL_IF([$1],
|
|
[m4_case([$1],
|
|
[yes], [AS_ECHO(["${msg_result_yes}$1${msg_reset}"])],
|
|
[no], [AS_ECHO(["${msg_result_no}$1${msg_reset}"])],
|
|
[AS_ECHO(["${msg_result_other}$1${msg_reset}"])])],
|
|
[colorize_result "$1"]) dnl
|
|
])dnl
|