summaryrefslogtreecommitdiff
path: root/scite/debian
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-12-04 16:20:35 -0500
committerB. Stack <bgstack15@gmail.com>2023-12-04 16:20:35 -0500
commitdefde5e36ca917c84e57e336c4626d4359a95434 (patch)
tree4619df1c217e514a55a806196576a74b8373cabd /scite/debian
parentscite: re-fix build-w-debian-lua.patch (diff)
downloadstackrpms-defde5e36ca917c84e57e336c4626d4359a95434.tar.gz
stackrpms-defde5e36ca917c84e57e336c4626d4359a95434.tar.bz2
stackrpms-defde5e36ca917c84e57e336c4626d4359a95434.zip
scite: document this liblua5.4 correction
Diffstat (limited to 'scite/debian')
-rw-r--r--scite/debian/patches/0004-Build-with-Debian-packaged-Lua.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/scite/debian/patches/0004-Build-with-Debian-packaged-Lua.patch b/scite/debian/patches/0004-Build-with-Debian-packaged-Lua.patch
index bc4300e..b1ae8b7 100644
--- a/scite/debian/patches/0004-Build-with-Debian-packaged-Lua.patch
+++ b/scite/debian/patches/0004-Build-with-Debian-packaged-Lua.patch
@@ -36,7 +36,7 @@ index a53e8f4..86ad0fe 100644
-# For the Gnome desktop stuff to work, prefix must point to where Gnome thinks it is.
-CONFIGFLAGS:=$(shell $(PKG_CONFIG) --cflags $(GTK_VERSION))
-CONFIGLIB:=$(shell $(PKG_CONFIG) --libs $(GTK_VERSION) gthread-2.0 gmodule-no-export-2.0)
-+# For the Lua and Gnome desktop stuff to work, prefix must point to where Lua and Gnome thinks it is.
++# stackrpms,3 For the Lua and Gnome desktop stuff to work, prefix must point to where Lua and Gnome thinks it is.
+CONFIGFLAGS:=$(shell $(PKG_CONFIG) --cflags $(GTK_VERSION)) $(shell $(PKG_CONFIG) --cflags lua5.4)
+CONFIGLIB:=$(shell $(PKG_CONFIG) --libs $(GTK_VERSION) gthread-2.0 gmodule-no-export-2.0) $(shell $(PKG_CONFIG) --libs lua5.4)
gnomeprefix:=$(shell $(PKG_CONFIG) --variable=prefix $(GTK_VERSION) 2>/dev/null)
bgstack15