This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
RE: unterminated conditionals
- To: "'tromey at redhat dot com'" <tromey at redhat dot com>
- Subject: RE: unterminated conditionals
- From: "Kremp, Johannes (Extern)" <Johannes dot Kremp at gedas dot de>
- Date: Thu, 21 Jun 2001 11:21:32 +0200
- Cc: "'automake at gnu dot org'" <automake at gnu dot org>
- List-Id: Discussion list for automake <automake.gnu.org>
What version of automake are you using?
i'm using automake 1.4.
Can you give more details?
i wrote in my 'configure.in':
SWITCH=hello
AM_CONDITIONAL(HELLO, test "$SWITCH" = hello)
and in my 'Makefile.am':
if HELLO
include hellofiles
bin_PROGRAMS = hello
hello_SOURCES = $(FILES) #from file 'hellofiles'
endif
'automake' told me:
automake: src/Makefile.am: unterminated conditionals: @HELLO_TRUE@
johannes