mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 08:37:58 +02:00
make install: check if LAZARUS_INSTALL_DIR already set, issue #37356
git-svn-id: trunk@63564 -
This commit is contained in:
parent
f18d2348ff
commit
b62203729f
7
Makefile
7
Makefile
@ -349,13 +349,18 @@ endif
|
||||
override PACKAGE_NAME=lazarus
|
||||
override PACKAGE_VERSION=$(IDEVERSION)
|
||||
RCPP?=$(strip $(firstword cpp$(SRCEXEEXT)))
|
||||
ifndef LAZARUS_INSTALL_DIR
|
||||
LAZARUS_INSTALL_DIR=$(INSTALL_PREFIX)/share/lazarus
|
||||
INSTALL_MAN_DIR=$(INSTALL_PREFIX)/share/man
|
||||
ifneq ($(findstring $(OS_TARGET),win32 win64),)
|
||||
LAZARUS_INSTALL_DIR=C:\lazarus
|
||||
endif
|
||||
ifneq ($(findstring $(OS_TARGET),freebsd),)
|
||||
LAZARUS_INSTALL_DIR=/usr/local/lazarus
|
||||
LAZARUS_INSTALL_DIR=$(INSTALL_PREFIX)/local/lazarus
|
||||
endif
|
||||
endif
|
||||
ifndef INSTALL_MAN_DIR
|
||||
INSTALL_MAN_DIR=$(INSTALL_PREFIX)/share/man
|
||||
endif
|
||||
ifneq ($(findstring $(OS_TARGET),win32 win64),)
|
||||
IDEVERSION=$(shell .\tools\install\get_lazarus_version.bat)
|
||||
|
@ -28,14 +28,20 @@ destdir=$(BASEDIR)/dist
|
||||
[prerules]
|
||||
RCPP?=$(strip $(firstword cpp$(SRCEXEEXT)))
|
||||
#
|
||||
ifndef LAZARUS_INSTALL_DIR
|
||||
LAZARUS_INSTALL_DIR=$(INSTALL_PREFIX)/share/lazarus
|
||||
INSTALL_MAN_DIR=$(INSTALL_PREFIX)/share/man
|
||||
ifneq ($(findstring $(OS_TARGET),win32 win64),)
|
||||
LAZARUS_INSTALL_DIR=C:\lazarus
|
||||
endif
|
||||
ifneq ($(findstring $(OS_TARGET),freebsd),)
|
||||
LAZARUS_INSTALL_DIR=/usr/local/lazarus
|
||||
LAZARUS_INSTALL_DIR=$(INSTALL_PREFIX)/local/lazarus
|
||||
endif
|
||||
endif
|
||||
ifndef INSTALL_MAN_DIR
|
||||
INSTALL_MAN_DIR=$(INSTALL_PREFIX)/share/man
|
||||
endif
|
||||
|
||||
ifneq ($(findstring $(OS_TARGET),win32 win64),)
|
||||
IDEVERSION=$(shell .\tools\install\get_lazarus_version.bat)
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user