source: trunk/essentials/sys-devel/automake-1.4/m4/cond.m4

Last change on this file was 3124, checked in by bird, 18 years ago

automake 1.4-p6

File size: 164 bytes
Line 
1# Define a conditional.
2
3AC_DEFUN([AM_CONDITIONAL],
4[AC_SUBST($1_TRUE)
5AC_SUBST($1_FALSE)
6if $2; then
7 $1_TRUE=
8 $1_FALSE='#'
9else
10 $1_TRUE='#'
11 $1_FALSE=
12fi])
Note: See TracBrowser for help on using the repository browser.