aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@ff385933-4943-42dc-877b-ffc776028de6>2004-03-10 14:36:40 +0000
committerschnetter <schnetter@ff385933-4943-42dc-877b-ffc776028de6>2004-03-10 14:36:40 +0000
commit7f70972cd7500b24aea5e61362a5720b552f95f1 (patch)
treeb26f99fd4336e87e83b40259556a16d878b20614
parentb49e2fe50f93ad9e26c3b98e7f6e903aea3bfcfb (diff)
Use $(error) instead of an unsatisfied dependency to report
configuration errors. git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/NaNChecker/trunk@58 ff385933-4943-42dc-877b-ffc776028de6
-rw-r--r--src/make.configuration.defn7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/make.configuration.defn b/src/make.configuration.defn
index 0440568..69801d6 100644
--- a/src/make.configuration.defn
+++ b/src/make.configuration.defn
@@ -5,10 +5,5 @@
HAVE_ISNAN := $(shell grep HAVE_ISNAN $(CONFIG)/cctk_Config.h)
ifneq (define, $(findstring define,$(HAVE_ISNAN)))
-$(NAME): MissingIsNaN
-.pseudo: MissingIsNaN
-MissingIsNaN:
- @echo "Thorn NaNChecker requires isnan(3) which is not available on this architecture."
- @echo "Please remove NaNChecker from your ThornList !"
- exit 2
+ $(error "Thorn NaNChecker requires isnan(3), which is not available on this architecture. Please remove NaNChecker from your ThornList.")
endif