0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-12-04 18:45:52 +00:00
termux-packages/packages/openjdk-17/0035-LauncherCommon.gmk-use-ifeq.endif-instead-of-ifeq.fi.patch

27 lines
979 B
Diff

From c25f5329466a8bf736422a5875219e2616bee1ad Mon Sep 17 00:00:00 2001
From: Duy Tran Khanh <40482367+khanhduytran0@users.noreply.github.com>
Date: Wed, 9 Jun 2021 08:15:49 +0700
Subject: [PATCH] LauncherCommon.gmk: use `ifeq...endif` instead of `ifeq...fi`
gmk is not C/C++ :trollface:
---
make/common/modules/LauncherCommon.gmk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/make/common/modules/LauncherCommon.gmk b/make/common/modules/LauncherCommon.gmk
index 2210fcbecc8e..6c93887b43d8 100644
--- a/make/common/modules/LauncherCommon.gmk
+++ b/make/common/modules/LauncherCommon.gmk
@@ -51,7 +51,7 @@ LAUNCHER_CFLAGS += -I$(TOPDIR)/src/java.base/share/native/launcher \
ifeq ($(call isTargetOs, ios), true)
LAUNCHER_CFLAGS += -I$(TOPDIR)/src/java.base/macosx/native/libjli
-fi
+endif
MACOSX_PLIST_DIR := $(TOPDIR)/src/java.base/macosx/native/launcher
JAVA_MANIFEST := $(TOPDIR)/src/java.base/windows/native/launcher/java.manifest
--
2.44.0