make: Support INSTALL_PREFIXDIR
During "make install", the packaging machinery should run "$(LOG_INSTALL) -D /opt/<pkg>" but runs "mkdir -p /opt/<pkg>" instead. As a consequence, the created directory is not owned by any of the created packages. This commit fixes that by introducing INSTALL_PREFIXDIR and installing it like all other directories. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
b368f3265c
commit
60ddc971d2
8 changed files with 9 additions and 5 deletions
|
|
@ -31,6 +31,7 @@ LOG_PREFIX ?= $(PREFIX)/log
|
|||
JAVA_PREFIX ?= $(PREFIX)
|
||||
HDR_SCOPE_PREFIX ?=
|
||||
|
||||
INSTALL_PREFIXDIR ?= $(PREFIX)
|
||||
DATA_DIR ?= $(FLAVOUR_PATH_PREFIX)$(PREFIX)/data
|
||||
IMAGEDIR ?= $(DATA_DIR)/images
|
||||
JSON_DIR ?= $(DATA_DIR)/json
|
||||
|
|
|
|||
Loading…
Reference in a new issue