summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2014-10-14 21:17:25 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2014-10-14 21:17:25 +0000
commitd1b8dbeba58668c231f4536e5bd00cce96c2f56c (patch)
tree2800a346827014dc808f25ee6f2ece6691460dff /Makefile
parent195de414f9057fb0b5a3197bd21ae965852d7a47 (diff)
downloadfpc-d1b8dbeba58668c231f4536e5bd00cce96c2f56c.tar.gz
* don't mention the ability to use OVERRIDEVERSIONCHECK, too many people use
it wrongly in spite of all the warnings. Look it up in the Makefile if you forgot the name of the setting. git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@28821 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 294e7db4e9..2f1c7472ca 100644
--- a/Makefile
+++ b/Makefile
@@ -2770,7 +2770,7 @@ ifndef CROSSCOMPILE
ifneq ($(FPC_VERSION),$(REQUIREDVERSION))
ifneq ($(FPC_VERSION),$(REQUIREDVERSION2))
ifndef OVERRIDEVERSIONCHECK
- $(error The only supported starting compiler version is $(REQUIREDVERSION). You are trying to build with $(FPC_VERSION). If you are absolutely sure that the current compiler is built from the exact same version/revision, you can try to use OVERRIDEVERSIONCHECK=1 to override )
+ $(error The only supported starting compiler version is $(REQUIREDVERSION). You are trying to build with $(FPC_VERSION).
else
@$(ECHO) You have overriden the starting compiler versioncheck while using starting compiler version $(FPC_VERSION). This situation is not supported and strange things and errors may happen. Remove OVERRIDEVERSIONCHECK=1 to fix this.
endif