summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorqwell <qwell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-08-22 15:04:10 +0000
committerqwell <qwell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-08-22 15:04:10 +0000
commitc6833713d75549c193f23378f135aa16149dcbda (patch)
treeac302c51656ed2e604f05c733b22fbb0f7f791be
parent33bf1f293d0fb3248e66010d90c8a86514990e8c (diff)
Reverse logic which checks for existing zaptel.conf
Issue 10527, reported by arcivanov. git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.4@2934 5390a7c7-147a-4af0-8ec9-7488f05a26cb
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7720327..6115b76 100644
--- a/Makefile
+++ b/Makefile
@@ -454,7 +454,7 @@ install-utils: utils install-xpp
install $(BINS) $(DESTDIR)$(BIN_DIR)/
install -d $(DESTDIR)$(MAN_DIR)
install -m 644 $(MAN_PAGES) $(DESTDIR)$(MAN_DIR)/
-ifneq (,$(wildcard $(DESTDIR)$(CONFIG_FILE)))
+ifeq (,$(wildcard $(DESTDIR)$(CONFIG_FILE)))
$(INSTALL) -D -m 644 zaptel.conf.sample $(DESTDIR)$(CONFIG_FILE)
endif