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>
35 lines
917 B
Makefile
35 lines
917 B
Makefile
all: build_EXE build_CGI
|
|
install: install_dir_PREFIX install_files_INIT install_EXE install_files_CGI install_files_SYSCFG
|
|
clean:allclean localclean doneclean textclean clean.init
|
|
test: all
|
|
|
|
ifeq ($(INSTALL_HOME_BIN_WRAPPERS),true)
|
|
install: install-home-bin
|
|
endif
|
|
|
|
HOME_BIN_EXE_SH = $(addprefix $(HOME)/bin/, $(notdir $(EXE_SH)))
|
|
|
|
$(HOME)/bin/%.py: %.py
|
|
echo -e "#!/bin/bash\nexec $(PYTHON) $(shell $(PWD))/$<" '"$$@"' > $@.tmp
|
|
chmod 755 $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
$(HOME)/bin/%.pl: %.pl
|
|
echo -e "#!/bin/bash\nexec /usr/bin/perl $(shell $(PWD))/$<" '"$$@"' > $@.tmp
|
|
chmod 755 $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
$(HOME)/bin/%.sh: %.sh
|
|
echo -e "#!/bin/bash\n. $(shell $(PWD))/$<" '"$$@"' > $@.tmp
|
|
chmod 755 $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
$(HOME)/bin/%: %
|
|
echo -e "#!/bin/bash\n. $(shell $(PWD))/$<" '"$$@"' > $@.tmp
|
|
chmod 755 $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
install-home-bin: $(HOME_BIN_EXE_SH)
|
|
|
|
clean.init:
|
|
$(RM) -f $(_INIT_SCRIPTS)
|