]> git.eshelyaron.com Git - emacs.git/commitdiff
* admin/merge-gnulib: fix bare checkout (Bug#32452#65)
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 24 Feb 2022 18:12:50 +0000 (10:12 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 24 Feb 2022 18:13:08 +0000 (10:13 -0800)
admin/merge-gnulib

index 4045eabf4e4a2956cad183d5738559b7fc3e8208..4aabffa0dcd204fbf325cc9bb21d42f026b77038 100755 (executable)
@@ -102,6 +102,9 @@ test -x "$gnulib_srcdir"/gnulib-tool || {
   exit 1
 }
 
+# gnulib-tool has problems with a bare checkout (Bug#32452#65).
+test -f configure || ./autogen.sh
+
 avoided_flags=
 for module in $AVOIDED_MODULES; do
   avoided_flags="$avoided_flags --avoid=$module"