Put "/" at end of .gitignore directory names
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 6 Jun 2023 21:23:39 +0000 (14:23 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 6 Jun 2023 21:24:24 +0000 (14:24 -0700)
* build-aux/bootstrap: Regenerate.
* top/bootstrap-funclib.sh (symlink_to_dir, autogen):
Put slashes after .gitignore entries that name directories.

ChangeLog
build-aux/bootstrap
top/bootstrap-funclib.sh

index cb885ba9a2256359e8f8891dd662a7e726d8170a..2aa6726537015d4faea65e17613ed08da69dc554 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2023-06-06  Paul Eggert  <eggert@cs.ucla.edu>
+
+       Put "/" at end of .gitignore directory names
+       * build-aux/bootstrap: Regenerate.
+       * top/bootstrap-funclib.sh (symlink_to_dir, autogen):
+       Put slashes after .gitignore entries that name directories.
+
 2023-06-06  Jose E. Marchesi  <jemarch@gnu.org>
 
        maintainer-makefile: Enforce the GNU Coding Standards in the README.
index 4645ffe04cd3c3dcd6d77552dd8c17f33330d266..8c68e96d43b1a578689600489457da0c00db9518 100755 (executable)
@@ -37,7 +37,7 @@ medir=`dirname "$me"`
 
 # A library of shell functions for autopull.sh, autogen.sh, and bootstrap.
 
-scriptlibversion=2023-03-09.17; # UTC
+scriptlibversion=2023-06-06.21; # UTC
 
 # Copyright (C) 2003-2023 Free Software Foundation, Inc.
 #
@@ -340,7 +340,7 @@ check_versions() {
     # Handle the still-experimental Automake-NG programs specially.
     # They remain named as the mainstream Automake programs ("automake",
     # and "aclocal") to avoid gratuitous incompatibilities with
-    # preexisting uses (by, say, autoreconf, or custom autogen.sh
+    # pre-existing usages (by, say, autoreconf, or custom autogen.sh
     # scripts), but correctly identify themselves (as being part of
     # "GNU automake-ng") when asked their version.
     case $app in
@@ -978,7 +978,7 @@ symlink_to_dir()
       for dot_ig in x $vc_ignore; do
         test $dot_ig = x && continue
         ig=$parent/$dot_ig
-        insert_vc_ignore $ig "${dst_dir##*/}"
+        insert_vc_ignore $ig "${dst_dir##*/}/"
       done
     fi
 
@@ -1104,7 +1104,7 @@ autogen()
     mkdir $build_aux
     for dot_ig in x $vc_ignore; do
       test $dot_ig = x && continue
-      insert_vc_ignore $dot_ig $build_aux
+      insert_vc_ignore $dot_ig $build_aux/
     done
   fi
 
index 640f0e2ecc6fe88089bff51578e045bc502acd4d..1d22eed7ccaf5880e5ea52567a8b597147a5abf4 100644 (file)
@@ -1,6 +1,6 @@
 # A library of shell functions for autopull.sh, autogen.sh, and bootstrap.
 
-scriptlibversion=2023-03-09.17; # UTC
+scriptlibversion=2023-06-06.21; # UTC
 
 # Copyright (C) 2003-2023 Free Software Foundation, Inc.
 #
@@ -941,7 +941,7 @@ symlink_to_dir()
       for dot_ig in x $vc_ignore; do
         test $dot_ig = x && continue
         ig=$parent/$dot_ig
-        insert_vc_ignore $ig "${dst_dir##*/}"
+        insert_vc_ignore $ig "${dst_dir##*/}/"
       done
     fi
 
@@ -1067,7 +1067,7 @@ autogen()
     mkdir $build_aux
     for dot_ig in x $vc_ignore; do
       test $dot_ig = x && continue
-      insert_vc_ignore $dot_ig $build_aux
+      insert_vc_ignore $dot_ig $build_aux/
     done
   fi