* .gitignore: Add the soon to be generated lib/fts_.h
* cfg.mk (sc_gitignore_missing): Special case the mapping
of fts.in.h to fts_.h.
Fixes https://bugs.gnu.org/78398
/lib/fcntl.h
/lib/float.h
/lib/fnmatch.h
+/lib/fts_.h
/lib/getopt-cdefs.h
/lib/getopt.h
/lib/glthread
sc_gitignore_missing:
@{ sed -n '/^\/lib\/.*\.h$$/{p;p}' $(srcdir)/.gitignore; \
find lib -name '*.in*' ! -name '*~' ! -name 'sys_*' | \
- sed 's|^|/|; s|_\(.*in\.h\)|/\1|; s/\.in//'; } | \
+ sed 's|^|/|; s|_\(.*in\.h\)|/\1|; s/\.in//' | \
+ sed 's|/fts\.h$$|/fts_.h|'; } | \
sort | uniq -u | grep . && { echo '$(ME): Add above' \
'entries to .gitignore' >&2; exit 1; } || :