mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 03:53:32 +01:00
conf.mk: Fix $(CONF_D) installation owner and mode
Installation was done with plain install -d instead of $(INSTALL) -d, which yielded a permission denied. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
056558bb27
commit
c7097bf534
1 changed files with 1 additions and 1 deletions
|
|
@ -16,6 +16,6 @@ endif
|
|||
ifneq ($(CONF_D),)
|
||||
INSTALLED_CONF_D = $(addprefix $(INSTALL_CFGDIR)/,$(CONF_D))
|
||||
$(INSTALL_CFGDIR)/$(CONF_D):
|
||||
install -d -m $(CFGDIRMODE) -d $(CFGDIROWNER) -g $(CFGDIRGROUP) $@
|
||||
$(INSTALL) -d -m $(CFGDIRMODE) -d $(CFGDIROWNER) -g $(CFGDIRGROUP) $@
|
||||
install: $(INSTALLED_CONF_D)
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue