summaryrefslogtreecommitdiff
path: root/gl/modules
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2022-07-07 01:18:45 -0400
committerPaul Smith <psmith@gnu.org>2022-07-09 10:47:13 -0400
commit5c1d9e54c7e7e124d95f6b08505f39914e65357a (patch)
tree6380eea48b033c4265c4140d2dd907dce2261c15 /gl/modules
parent2d7b5d6d8047301ee7126c3e4527a535b7898680 (diff)
downloadmake-git-5c1d9e54c7e7e124d95f6b08505f39914e65357a.tar.gz
Move our fnmatch/glob implementation into gl/lib
The gl subdirectory contains our local versions of gnulib module implementations, so move fnmatch* and glob* from lib to gl/lib. * gl/modules/make-glob: Add a proper Files: section. * lib/.gitignore: Delete unnecessary ignore file: lib is empty. * .gitignore: Add lib/ as an ignored directory.
Diffstat (limited to 'gl/modules')
-rw-r--r--gl/modules/make-glob7
1 files changed, 5 insertions, 2 deletions
diff --git a/gl/modules/make-glob b/gl/modules/make-glob
index bf5a1d92..d9a34d33 100644
--- a/gl/modules/make-glob
+++ b/gl/modules/make-glob
@@ -2,6 +2,11 @@ Description:
GNU make version of fnmatch()/glob() functions. This is a holdover from
a very old version of the globbing library.
+Files:
+lib/fnmatch.c
+lib/fnmatch.in.h
+lib/glob.c
+lib/glob.in.h
configure.ac:
# Check the system to see if it provides GNU glob. If not, use our
@@ -28,7 +33,6 @@ AM_CONDITIONAL([USE_SYSTEM_GLOB], [test "$make_cv_sys_gnu_glob" = yes])
USE_SYSTEM_GLOB="$make_cv_sys_gnu_glob"
AC_SUBST([USE_SYSTEM_GLOB])
-
Makefile.am:
if !USE_SYSTEM_GLOB
libgnu_a_SOURCES += fnmatch.c
@@ -60,7 +64,6 @@ endif
EXTRA_DIST += fnmatch.in.h glob.in.h
-
Include:
<glob.h>