summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Slater <nslater@apache.org>2008-09-13 13:39:33 +0000
committerNoah Slater <nslater@apache.org>2008-09-13 13:39:33 +0000
commit48d2d8c0e97aa39eab674aea580a569d8aedd5c7 (patch)
tree58d57487d28bb62c28907f36e91cb372cb981946
parent4ab53044a63d1e55bf53ee74ad6aa3db162f0aa5 (diff)
added quotes around filename
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@694945 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--etc/couchdb/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/couchdb/Makefile.am b/etc/couchdb/Makefile.am
index c253048d..b2399dcc 100644
--- a/etc/couchdb/Makefile.am
+++ b/etc/couchdb/Makefile.am
@@ -31,8 +31,8 @@ default.ini: default.ini.tpl
install-data-hook:
if test ! -f "$(localconfdir)/local.ini"; then \
- cp local.ini $(localconfdir)/local.ini; \
+ cp local.ini "$(localconfdir)/local.ini"; \
fi
uninstall-local:
- rm -f $(localconfdir)/local.ini
+ rm -f "$(localconfdir)/local.ini"