diff options
-rw-r--r-- | etc/Makefile.am | 1 | ||||
-rw-r--r-- | etc/couchdb/Makefile.am | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/etc/Makefile.am b/etc/Makefile.am index e5a93fab..743f9f40 100644 --- a/etc/Makefile.am +++ b/etc/Makefile.am @@ -33,7 +33,6 @@ CLEANFILES = $(init_DATA) $(nobase_sysconf_DATA) $(launchd_DATA) transform = @program_transform_name@ couchdb_command_name = `echo couchdb | sed '$(transform)'` -couchjs_command_name = `echo couchjs | sed '$(transform)'` default/couchdb: default/couchdb.tpl if test "$(mkdir_p)"; then \ diff --git a/etc/couchdb/Makefile.am b/etc/couchdb/Makefile.am index 2835b9a9..aef244b6 100644 --- a/etc/couchdb/Makefile.am +++ b/etc/couchdb/Makefile.am @@ -18,6 +18,9 @@ nobase_dist_pkgconf_DATA = conf/mime.types CLEANFILES = $(pkgconf_DATA) $(dist_pkgconf_DATA) +transform = @program_transform_name@ +couchjs_command_name = `echo couchjs | sed '$(transform)'` + couch.ini: couch.ini.tpl sed -e "s|%bindir%|@bindir@|g" \ -e "s|%pkgconfdir%|@pkgconfdir@|g" \ |