auctex-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [can't compile the main branch]


From: Ikumi Keita
Subject: Re: [can't compile the main branch]
Date: Wed, 24 Apr 2024 23:04:20 +0900

>>>>> Uwe Brauer <oub@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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]