diff options
author | Jan Lehnardt <jan@apache.org> | 2015-09-17 21:46:39 +0200 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2015-09-17 21:46:39 +0200 |
commit | 52924ce461c54c6b8406abde017aa0c426d7811c (patch) | |
tree | 85b4de14daedcf06a3fc1dc78f5d4b0a9a6b6d76 | |
parent | 71af0bb535c465696e0f4a02c7ed80f220369200 (diff) | |
download | couchdb-52924ce461c54c6b8406abde017aa0c426d7811c.tar.gz |
fix make dist, #999f710 had broken it
-rwxr-xr-x | build-aux/couchdb-build-release.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/build-aux/couchdb-build-release.sh b/build-aux/couchdb-build-release.sh index 215c8d919..9d2141a14 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 |