Skip to content
Snippets Groups Projects
Commit 8375af0b authored by Albert Gräf's avatar Albert Gräf
Browse files

mingw: handle Lua updates.

Our inno Makefile assumed lua53, but lua54 is the version that msys2 has after
a recent update. So we now use a glob pattern in the Makefile to catch any
version of the lua dll that msys2 currently has.
parent 19e90313
No related branches found
No related tags found
No related merge requests found
......@@ -115,7 +115,7 @@ ifneq ($(LIGHT),yes)
install -p $(bin_src)/libreadline8.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libtermcap-0.dll $(DESTDIR)$(bindir)/
# For other external libs
install -p $(bin_src)/lua53.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/lua*.dll $(DESTDIR)$(bindir)/
#install -p $(bin_src)/pthreadGC2.dll $(DESTDIR)$(bindir)/
#install -p $(bin_src)/libdl.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libportaudio-2.dll $(DESTDIR)$(bindir)/
......
......@@ -115,7 +115,7 @@ ifneq ($(LIGHT),yes)
install -p $(bin_src)/libreadline8.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libtermcap-0.dll $(DESTDIR)$(bindir)/
# For other external libs
install -p $(bin_src)/lua53.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/lua*.dll $(DESTDIR)$(bindir)/
#install -p $(bin_src)/pthreadGC2.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libdl.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libportaudio-2.dll $(DESTDIR)$(bindir)/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment