* Do not accept $(FPCDIR)/units sub-directory existence to validate FPCDIR variable value

git-svn-id: trunk@35817 -
This commit is contained in:
pierre 2017-04-17 10:06:11 +00:00
parent cd13255d56
commit 19148275db

View File

@ -392,7 +392,7 @@ endif
# Test FPCDIR to look if the RTL dir exists
ifdef FPCDIR
override FPCDIR:=$(subst \,/,$(FPCDIR))
ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl units)),)
ifeq ($(wildcard $(addprefix $(FPCDIR)/,rtl)),)
override FPCDIR=wrong
endif
else