mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 12:39:31 +02:00
* make install shall not make assumptions about FPC, if one was provided
git-svn-id: trunk@40007 -
This commit is contained in:
parent
02e03cbd86
commit
88589fb99d
@ -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)
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user