Remove unuseful variable 'PD_PATH'
The variable was introduced in commit 41e9743 for compatibility
with centralized build system as inherited from Pd-extended by
Pd-L2ork and Purr Data. But it doesn't work in that context because
$(PD_PATH)/bin is absent. Therefore better remove 'PD_PATH' and
focus on making variables 'PDDIR' & Co. work as expected.
This commit is contained in:
parent
80d7dc0a13
commit
1361dd3999
1 changed files with 1 additions and 6 deletions
|
|
@ -213,10 +213,6 @@ version = 0.5.0
|
||||||
# INSTALL
|
# INSTALL
|
||||||
# Definition of install program.
|
# Definition of install program.
|
||||||
#
|
#
|
||||||
# PD_PATH:
|
|
||||||
# Equivalent to PDDIR. Supported for compatibility with pd-extended central
|
|
||||||
# makefile, but deprecated otherwise.
|
|
||||||
#
|
|
||||||
# objectsdir:
|
# objectsdir:
|
||||||
# Root directory for installation of Pd library directories, like PDLIBDIR but
|
# Root directory for installation of Pd library directories, like PDLIBDIR but
|
||||||
# not overridable by environment. Supported for compatibility with pd-extended
|
# not overridable by environment. Supported for compatibility with pd-extended
|
||||||
|
|
@ -634,10 +630,9 @@ endif
|
||||||
|
|
||||||
# Platform-dependent default paths are specified above, but overridable.
|
# Platform-dependent default paths are specified above, but overridable.
|
||||||
# Path variables in upper case can be defined as make command argument or in the
|
# Path variables in upper case can be defined as make command argument or in the
|
||||||
# environment. 'PD_PATH' and 'objectsdir' are supported for compatibility with
|
# environment. Variable 'objectsdir' is supported for compatibility with
|
||||||
# the build system that pd-l2ork has inherited from pd-extended.
|
# the build system that pd-l2ork has inherited from pd-extended.
|
||||||
|
|
||||||
PDDIR ?= $(PD_PATH)
|
|
||||||
PDINCLUDEDIR ?= $(pdincludepath)
|
PDINCLUDEDIR ?= $(pdincludepath)
|
||||||
PDBINDIR ?= $(pdbinpath)
|
PDBINDIR ?= $(pdbinpath)
|
||||||
PDLIBDIR ?= $(firstword $(objectsdir) $(pkglibdir))
|
PDLIBDIR ?= $(firstword $(objectsdir) $(pkglibdir))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue