You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2015/09/17 21:46:48 UTC

couchdb commit: updated refs/heads/master to 52924ce

Repository: couchdb
Updated Branches:
  refs/heads/master 71af0bb53 -> 52924ce46


fix make dist, #999f710 had broken it


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/52924ce4
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/52924ce4
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/52924ce4

Branch: refs/heads/master
Commit: 52924ce461c54c6b8406abde017aa0c426d7811c
Parents: 71af0bb
Author: Jan Lehnardt <ja...@apache.org>
Authored: Thu Sep 17 21:46:39 2015 +0200
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Thu Sep 17 21:46:39 2015 +0200

----------------------------------------------------------------------
 build-aux/couchdb-build-release.sh | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/52924ce4/build-aux/couchdb-build-release.sh
----------------------------------------------------------------------
diff --git a/build-aux/couchdb-build-release.sh b/build-aux/couchdb-build-release.sh
index 215c8d9..9d2141a 100755
--- a/build-aux/couchdb-build-release.sh
+++ b/build-aux/couchdb-build-release.sh
@@ -35,7 +35,7 @@ cd ..
 # actual version detection TBD
 perl -pi -e "s/\{vsn, git\}/\{vsn, \"$VERSION\"\}/" $RELDIR/src/*/src/*.app.src
 
-# create THANKS file
+# create CONTRIBUTORS file
 if test -e .git; then
     OS=`uname -s`
     case "$OS" in
@@ -47,11 +47,11 @@ if test -e .git; then
     ;;
     esac
 
-    sed -e "/^#.*/d" THANKS.in > $RELDIR/THANKS
+    sed -e "/^#.*/d" CONTRIBUTORS.in > $RELDIR/CONTRIBUTORS
     CONTRIB_EMAIL_SED_COMMAND="s/^[[:blank:]]{5}[[:digit:]]+[[:blank:]]/ * /"
     git shortlog -se 6c976bd..HEAD \
         | grep -v @apache.org \
-        | sed $SED_ERE_FLAG -e "$CONTRIB_EMAIL_SED_COMMAND" >> $RELDIR/THANKS
-    echo "" >> $RELDIR/THANKS # simplest portable newline
-    echo "For a list of authors see the \`AUTHORS\` file." >> $RELDIR/THANKS
+        | sed $SED_ERE_FLAG -e "$CONTRIB_EMAIL_SED_COMMAND" >> $RELDIR/CONTRIBUTORS
+    echo "" >> $RELDIR/CONTRIBUTORS # simplest portable newline
+    echo "For a list of authors see the \`AUTHORS\` file." >> $RELDIR/CONTRIBUTORS
 fi