3.0.4 - /etc/vtund.conf not delivered by install when built on some hosts
Status: Inactive
Brought to you by:
mtbishop
hosts with a working install of the app - and who have an /etc/vtund.conf already - will cause the delivery of this config file to not occur within the build environment, due to a bad logic in Makefile.in
--- Makefile.in~ 2017-08-30 21:19:49.875982491 -0700
+++ Makefile.in 2017-08-30 22:22:24.075215301 -0700
@@ -89,7 +89,7 @@
install_config:
$(INSTALL) -d -m 755 $(INSTALL_OWNER) $(DESTDIR)$(ETC_DIR)
- if [ ! -f $(ETC_DIR)/vtund.conf ]; then \
+ if [ ! -f $(DESTDIR)$(ETC_DIR)/vtund.conf ]; then \
$(INSTALL) -m 600 $(INSTALL_OWNER) vtund.conf $(DESTDIR)$(ETC_DIR); \
fi