GitBucket
4.21.2
Toggle navigation
Snippets
Sign in
Files
Branches
1
Releases
Issues
1
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
nigel.stanger
/
Handbook
Browse code
- Changed text of messages.
master
1 parent
cbc14f9
commit
da326cda7f6a7c332611ea37c7fa4ee889de2ee4
nstanger
authored
on 30 Nov 2010
Patch
Showing
1 changed file
configuration/include/ac_check_envvar.m4
Ignore Space
Show notes
View
configuration/include/ac_check_envvar.m4
dnl @synopsis AC_CHECK_ENVVAR dnl dnl This macro tests if a particular environment variable is defined. dnl Warning if not. dnl dnl Example: dnl dnl AC_CHECK_ENVVAR(foo) dnl AC_DEFUN([AC_CHECK_ENVVAR],[dnl AC_MSG_CHECKING([variable $1]) if test -z @S|@$1; then AC_MSG_RESULT([no]) AC_MSG_WARN([environment variable $1 not defined]) else AC_MSG_RESULT([@S|@$1]) fi ])
dnl @synopsis AC_CHECK_ENVVAR dnl dnl This macro tests if a particular environment variable is defined. dnl Warning if not. dnl dnl Example: dnl dnl AC_CHECK_ENVVAR(foo) dnl AC_DEFUN([AC_CHECK_ENVVAR],[dnl AC_MSG_CHECKING([$1]) if test -z @S|@$1; then AC_MSG_RESULT([no]) AC_MSG_WARN([required environment variable $1 not defined]) else AC_MSG_RESULT([@S|@$1]) fi ])
Show line notes below