>>>>> Uwe Brauer <o...@mat.ucm.es> writes: > So I am confused now, shall I try out to make a symbolic link or not?
You can try either way. Try one of the symblic link or this patch: diff --git a/build-aux/gitlog-to-auctexlog b/build-aux/gitlog-to-auctexlog index 808597d5..944d90ff 100755 --- a/build-aux/gitlog-to-auctexlog +++ b/build-aux/gitlog-to-auctexlog @@ -60,6 +60,12 @@ fi gen_origin=$2 } +# If this is not a Git repository, just generate an empty ChangeLog. +test -d .git || { + >"$output" + exit +} + # Get the new value for gen_origin from the latest version in the repository. new_origin=`git log --pretty=format:%H 'HEAD^!'` || exit @@ -68,12 +74,6 @@ if [ -f "$output" ]; then rm -f "$output" || exit 1 fi -# If this is not a Git repository, just generate an empty ChangeLog. -test -d .git || { - >"$output" - exit -} - # Use Gnulib's packaged ChangeLog generator. # Maybe we should skip all "Merge branch 'master'" messages. ./build-aux/gitlog-to-changelog \ Regards, Ikumi Keita #StandWithUkraine #StopWarInUkraine #Gaza #StopMassiveKilling #CeasefireNOW