From: Glenn Morris Date: Thu, 7 May 2015 01:37:09 +0000 (-0400) Subject: * build-aux/gitlog-to-emacslog: Allow specification of output. X-Git-Tag: emacs-25.0.90~2167 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=38398844200322e81e20f4fb2ad129b72a0e8a21;p=emacs.git * build-aux/gitlog-to-emacslog: Allow specification of output. --- diff --git a/build-aux/gitlog-to-emacslog b/build-aux/gitlog-to-emacslog index 996f6d0ec7d..059cf81abc0 100755 --- a/build-aux/gitlog-to-emacslog +++ b/build-aux/gitlog-to-emacslog @@ -23,12 +23,14 @@ LC_ALL=C export LC_ALL gen_origin=${1?} +output=$2 +test -n "$output" || output=ChangeLog # If this is not a Git repository, just generate an empty ChangeLog. test -d ${srcprefix}.git || { # Remove any old ChangeLog, in case it is a vc-dwim symlink. - rm -f "${distprefix}ChangeLog" || exit - >"${distprefix}ChangeLog" + rm -f "${distprefix}$output" || exit + >"${distprefix}$output" exit } @@ -78,4 +80,5 @@ if test -s "${distprefix}ChangeLog.tmp"; then fi # Install the generated ChangeLog. -mv -i "${distprefix}ChangeLog.tmp" "${distprefix}ChangeLog" +test "$output" = "ChangeLog.tmp" || \ + mv -i "${distprefix}ChangeLog.tmp" "${distprefix}$output"