about summary refs log tree commit diff
diff options
context:
space:
mode:
authorToyam Cox <Vaelatern@voidlinux.org>2019-10-20 13:29:42 -0400
committerToyam Cox <Vaelatern@voidlinux.org>2019-10-20 13:29:42 -0400
commit0d15cc7eccf8ce42266f2413dcedcfcf417d91ef (patch)
tree89b899875b23d3270ea7b19f2dc33e53658739fb
parent37fb7830a1111c1544b3ed1bb8b687d7e75a5e6a (diff)
downloadxtools-0d15cc7eccf8ce42266f2413dcedcfcf417d91ef.tar.gz
xtools-0d15cc7eccf8ce42266f2413dcedcfcf417d91ef.tar.xz
xtools-0d15cc7eccf8ce42266f2413dcedcfcf417d91ef.zip
xlint: don't fail on meta templates
-rwxr-xr-xxlint2
1 files changed, 1 insertions, 1 deletions
diff --git a/xlint b/xlint
index 81ec57f..32e69ee 100755
--- a/xlint
+++ b/xlint
@@ -21,7 +21,7 @@ header() {
 
 exists_once() {
 	for var in pkgname version revision short_desc maintainer license \
-		   homepage distfiles checksum; do
+		   homepage; do
 		case "$(grep -c "^${var}=" "$template")" in
 			0) echo "$template: '$var' missing!";;
 			1) ;;