summaryrefslogtreecommitdiff
path: root/updater-ng/patches
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2020-05-31 12:46:34 +0200
committerKarel Kočí <cynerd@email.cz>2020-05-31 12:46:34 +0200
commit09204b57bf8aed0cb2beb633978ea4d2cbeef0e2 (patch)
treee81089423181cddb88609781621b9580b69f58cf /updater-ng/patches
parent6746e43050c1fce7a44e64e6e9cca583b8308521 (diff)
downloadopenwrt-personal-pkgs-09204b57bf8aed0cb2beb633978ea4d2cbeef0e2.tar.gz
openwrt-personal-pkgs-09204b57bf8aed0cb2beb633978ea4d2cbeef0e2.tar.bz2
openwrt-personal-pkgs-09204b57bf8aed0cb2beb633978ea4d2cbeef0e2.zip
updater-ng: fix dependencies
Diffstat (limited to 'updater-ng/patches')
-rw-r--r--updater-ng/patches/0002-configure.ac-check-for-plain-Lua-first-instead-of-lu.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/updater-ng/patches/0002-configure.ac-check-for-plain-Lua-first-instead-of-lu.patch b/updater-ng/patches/0002-configure.ac-check-for-plain-Lua-first-instead-of-lu.patch
index 2bf1f47..91c3d63 100644
--- a/updater-ng/patches/0002-configure.ac-check-for-plain-Lua-first-instead-of-lu.patch
+++ b/updater-ng/patches/0002-configure.ac-check-for-plain-Lua-first-instead-of-lu.patch
@@ -1,4 +1,4 @@
-From 2fd732bc6ed35761142c96122912febc41b021d2 Mon Sep 17 00:00:00 2001
+From 6b57800e3b8836eefb39cb9f315faf6b35a8df3f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= <cynerd@email.cz>
Date: Sun, 31 May 2020 11:31:46 +0200
Subject: [PATCH 2/2] configure.ac: check for plain Lua first instead of lua5.1
@@ -11,7 +11,7 @@ versions.
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
-index aec813cb..2cc89aeb 100644
+index aec813cb..7421534a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,8 @@ AS_IF([test -n "$with_embed_busybox"],
@@ -19,7 +19,7 @@ index aec813cb..2cc89aeb 100644
])
-PKG_CHECK_MODULES([LUA], [lua5.1])
-+PKG_CHECK_MODULES([LUA], [lua = 5.1],,
++PKG_CHECK_MODULES([LUA], [lua >= 5.1 lua < 5.2],,
+ [PKG_CHECK_MODULES([LUA], [lua5.1])])
PKG_CHECK_MODULES([LIBEVENT], [libevent >= 2.0])
PKG_CHECK_MODULES([LIBARCHIVE], [libarchive])