소스 검색

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

git-svn-id: trunk@35817 -
pierre 8 년 전
부모
커밋
19148275db
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      utils/fpcm/fpcmake.ini

+ 1 - 1
utils/fpcm/fpcmake.ini

@@ -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