bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

make tests which don't work: features/conditionals


From: David Baird
Subject: make tests which don't work: features/conditionals
Date: Thu, 3 Feb 2005 15:43:32 +0200

I am running the tests with the latest sources in CVS. My goal is to
enable them to run on Windows XP with and without Cygwin, and then add
some tests specific to those platforms. I found that not all the tests
run, even on Linux. For example, the second test of
features/conditionals fail with a syntax error on:

DEF3 = no
FUNC = $1
ifdef $(call FUNC,DEF)3
  DEF3 = yes
endif

I couldn't even get older versions of GNU Make to work with this
conditional, although the following does work:

DEF3 = no
FUNC = $1
ifneq (,$($(call FUNC,DEF)3))
  DEF3 = yes
endif

Are all the tests of the latest CVS supposed to run on any platform?

Thanks,
David Baird




reply via email to

[Prev in Thread] Current Thread [Next in Thread]