* make install shall not make assumptions about FPC, if one was provided

git-svn-id: trunk@40007 -
This commit is contained in:
florian 2018-10-21 14:52:21 +00:00
parent 02e03cbd86
commit 88589fb99d
2 changed files with 9 additions and 0 deletions

View File

@ -4528,7 +4528,11 @@ endif
$(INSTALL) $(MSGFILES) $(MSGINSTALLDIR)
endif
install:
ifndef FPC
$(MAKE) quickinstall auxfilesinstall FPC=$(BASEDIR)/$(INSTALLEXEFILE)
else
$(MAKE) quickinstall auxfilesinstall
endif
installsymlink: install
ifneq ($(PPCCPULOCATION),$(INSTALL_BINDIR))
$(MKDIR) $(INSTALL_BINDIR)

View File

@ -921,7 +921,12 @@ endif
install:
# if no FPC is passed, use that one we assume, we just build
ifndef FPC
$(MAKE) quickinstall auxfilesinstall FPC=$(BASEDIR)/$(INSTALLEXEFILE)
else
$(MAKE) quickinstall auxfilesinstall
endif
# This also installs a link from bin to the actual executable.
# The .deb does that later.