+2023-02-07 Bruno Haible <bruno@clisp.org>
+
+ check-copyright: Don't fail because of the 'glob' module.
+ Reported by Bjarni Ingi Gislason <bjarniig@simnet.is> in
+ <https://lists.gnu.org/archive/html/bug-gnulib/2023-02/msg00057.html>.
+ * check-copyright: Filter out the files from the 'glob' module.
+
2023-02-07 Bruno Haible <bruno@clisp.org>
check-copyright: Make output prettier.
fi
done
if test "$file_license" != "$weakest_license"; then
- if test $error = 0; then
- echo "Module License File License File name"
- echo "================= ================= ====================================="
+ # The 'glob' module is a special case. It contains LGPLv2+ code (shared with
+ # glibc) but at the same time also has a dependency to a module under GPL
+ # (namely, 'fstatat'). This is not a mistake.
+ if test "$weakest_license" = GPL \
+ && case "$file" in lib/glob*) true ;; *) false ;; esac; then
+ :
+ else
+ if test $error = 0; then
+ echo "Module License File License File name"
+ echo "================= ================= ====================================="
+ fi
+ printf '%-17s %-17s %s\n' "$weakest_license" "$file_license" "$file"
+ error=1
fi
- printf '%-17s %-17s %s\n' "$weakest_license" "$file_license" "$file"
- error=1
fi
done
exit $error