diff options
author | Robert Newson <rnewson@apache.org> | 2014-06-27 11:53:06 +0100 |
---|---|---|
committer | Robert Newson <rnewson@apache.org> | 2014-06-27 14:45:09 +0100 |
commit | 694dadd51433f21b7ddedf4b19198f46d5616864 (patch) | |
tree | 99659b1925cb81e1eba9e7125605d06c98bee83d /configure | |
parent | 6c66f61ba4a92cd3b7ffcb0a4319f94531cbb5aa (diff) | |
download | couchdb-694dadd51433f21b7ddedf4b19198f46d5616864.tar.gz |
Consolidate .ini files
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -12,6 +12,7 @@ # the License. PREFIX="/opt/couchdb" +PACKAGE_AUTHOR_NAME="The Apache Software Foundation" COUCHDB_USER=`whoami` WITH_CURL="false" @@ -97,9 +98,10 @@ cat > rel/couchdb.config << EOF % % The contents of this file are auto-generated by configure % +{package_author_name, "$PACKAGE_AUTHOR_NAME"}. {prefix, "$PREFIX"}. {data_dir, "$DATA"}. -{view_dir, "$VIEW"}. +{view_index_dir, "$VIEW"}. {user, "$COUCHDB_USER"}. {node_name, "-name couchdb"}. {cluster_port, 5984}. @@ -121,9 +123,10 @@ cat > install.mk << EOF # # The contents of this file are auto-generated by configure # +package_author_name = $PACKAGE_AUTHOR_NAME prefix = $PREFIX data_dir = $DATA -view_dir = $VIEW +view_index_dir = $VIEW user = $COUCHDB_USER EOF |