* typo in fpc -P? detection

This commit is contained in:
peter 2001-10-12 16:08:02 +00:00
parent b5d198ee3c
commit 5d6cfe797c
3 changed files with 1361 additions and 1366 deletions

View File

@ -1,5 +1,5 @@
#
# Don't edit, this file is generated by FPCMake Version 1.1 [2001/09/29]
# Don't edit, this file is generated by FPCMake Version 1.1 [2001/10/10]
#
default: all
override PATH:=$(subst \,/,$(PATH))
@ -71,7 +71,7 @@ endif
endif
ifndef FPC
FPC:=$(shell fpc -P?)
ifneq ($(findstring Error,$(PPCBIN)),)
ifneq ($(findstring Error,$(FPC)),)
override FPC=ppc386
endif
endif
@ -417,6 +417,26 @@ EXEEXT=
FPCMADE=fpcmade.be
ZIPSUFFIX=be
endif
ifeq ($(OS_TARGET),sunos)
PPUEXT=.ppu
ASMEXT=.s
OEXT=.o
SMARTEXT=.sl
STATICLIBEXT=.a
EXEEXT=
FPCMADE=fpcmade.sun
ZIPSUFFIX=sun
endif
ifeq ($(OS_TARGET),qnx)
PPUEXT=.ppu
ASMEXT=.s
OEXT=.o
SMARTEXT=.sl
STATICLIBEXT=.a
EXEEXT=
FPCMADE=fpcmade.qnx
ZIPSUFFIX=qnx
endif
ifdef REQUIRE_UNITSDIR
override UNITSDIR+=$(REQUIRE_UNITSDIR)
endif

File diff suppressed because it is too large Load Diff

View File

@ -110,7 +110,7 @@ ifndef FPC
FPC:=$(shell fpc -P?)
# Older fpc executables didn't support it and return
# Error: Illegal processor... When found then fallback to ppc386
ifneq ($(findstring Error,$(PPCBIN)),)
ifneq ($(findstring Error,$(FPC)),)
override FPC=ppc386
endif
endif