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"