mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 09:19:15 -04:00
Release-Notes: http://www.kamailio.org/w/kamailio-v4-3-0-release-notes/ New features: http://www.kamailio.org/wiki/features/new-in-4.3.x - tries to fix installation issues with non-default options - adds WEBSOCKET option PR: 200352
21 lines
657 B
Text
21 lines
657 B
Text
--- utils/kamctl/Makefile.orig 2015-07-20 13:16:26 UTC
|
|
+++ utils/kamctl/Makefile
|
|
@@ -9,6 +9,8 @@ else
|
|
kamctltmpdir = $(basedir)
|
|
endif
|
|
|
|
+skip_cfg_install?=yes
|
|
+
|
|
all:
|
|
@echo "No compilation needed for kamctl"
|
|
|
|
@@ -21,7 +23,8 @@ install-cfg: $(cfg_prefix)/$(cfg_dir)
|
|
$(INSTALL_TOUCH) $(cfg_prefix)/$(cfg_dir)/kamctlrc.sample
|
|
$(INSTALL_CFG) kamctlrc \
|
|
$(cfg_prefix)/$(cfg_dir)/kamctlrc.sample
|
|
- if [ ! -f $(cfg_prefix)/$(cfg_dir)/kamctlrc ]; then \
|
|
+ if [ -z "${skip_cfg_install}" -a \
|
|
+ ! -f $(cfg_prefix)/$(cfg_dir)/kamctlrc ]; then \
|
|
mv -f $(cfg_prefix)/$(cfg_dir)/kamctlrc.sample \
|
|
$(cfg_prefix)/$(cfg_dir)/kamctlrc; \
|
|
fi
|