From 3386221ef113241d3ecfd57b50253c89e61bd12f Mon Sep 17 00:00:00 2001
From: Matthias Schiffer <mschiffer@universe-factory.net>
Date: Sun, 11 Jul 2021 22:38:20 +0200
Subject: [PATCH] gluon.mk: fix indentation

A leading tab character usually marks recipe lines in Makefiles;
non-recipe lines must be indented using spaces.

The incorrect tab character doesn't seen to have caused any issues in
this case, but it should be fixed nonetheless, if only for consistency.
---
 package/gluon.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/gluon.mk b/package/gluon.mk
index 0139544e9..5a7944766 100644
--- a/package/gluon.mk
+++ b/package/gluon.mk
@@ -4,7 +4,7 @@ PKG_FILE_DEPENDS += $(GLUON_MK)
 PKG_BUILD_DEPENDS += luasrcdiet/host
 
 ifneq ($(wildcard ./luasrc/.),)
-	PKG_CONFIG_DEPENDS += CONFIG_GLUON_MINIFY
+  PKG_CONFIG_DEPENDS += CONFIG_GLUON_MINIFY
 endif
 
 ifneq ($(wildcard ./src/respondd.c),)
-- 
GitLab