Skip to content

Commit 9c9d68a

Browse files
committed
Fix missing package name on webos
1 parent 5b0fb96 commit 9c9d68a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile.webos

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ SDL2_PREBUILT_ARCHIVE ?= https://github.com/webosbrew/SDL-webOS/releases/downloa
2222
#########################
2323
#########################
2424

25-
PACKAGE_NAME ?= com.retroarch.webos
25+
APP_PACKAGE_NAME ?= com.retroarch.webos
2626
PACKAGE_VERSION := $(patsubst "%",%,$(RARCH_VERSION))
2727

2828
DEBUG ?= 0
@@ -197,7 +197,7 @@ RARCH_OBJ := $(addprefix $(OBJDIR)/,$(OBJ))
197197

198198
define APPINFO
199199
{
200-
"id": "$(PACKAGE_NAME)",
200+
"id": "$(APP_PACKAGE_NAME)",
201201
"version": "$(PACKAGE_VERSION)",
202202
"vendor": "webosbrew.org",
203203
"title": "RetroArch",
@@ -291,10 +291,10 @@ endif
291291
cd webos && ares-package dist
292292

293293
install: ipk
294-
ares-install webos/$(PACKAGE_NAME)_$(PACKAGE_VERSION)_$(ARCH).ipk
294+
ares-install webos/$(APP_PACKAGE_NAME)_$(PACKAGE_VERSION)_$(ARCH).ipk
295295

296296
launch: install
297-
ares-launch $(PACKAGE_NAME)
297+
ares-launch $(APP_PACKAGE_NAME)
298298

299299
.PHONY: all clean ipk
300300

0 commit comments

Comments
 (0)