aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-12-23 14:57:39 -0500
committerB. Stack <bgstack15@gmail.com>2023-12-23 14:57:39 -0500
commit0cad66f997e2bf8c754582f02868607550e907cd (patch)
tree2d2626966786da40e2e9ff0f885e70e747e3b32b
parenthandle dpkg-gensymbols problem (diff)
downloadgtk3-classic-build-0cad66f997e2bf8c754582f02868607550e907cd.tar.gz
gtk3-classic-build-0cad66f997e2bf8c754582f02868607550e907cd.tar.bz2
gtk3-classic-build-0cad66f997e2bf8c754582f02868607550e907cd.zip
add that gensymbols fix to next few versionsHEADmaster
-rwxr-xr-xgtk-classic-build-deb.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk-classic-build-deb.sh b/gtk-classic-build-deb.sh
index 86c93f9..37a329a 100755
--- a/gtk-classic-build-deb.sh
+++ b/gtk-classic-build-deb.sh
@@ -129,7 +129,7 @@ case "${raw_version}" in
sed -r -i 's/(appearance__smaller-statusbar.patch|file-chooser__places-sidebar.patch)//g;' debian/patches/series
sed -i -r debian/rules -e '2aDEB_BUILD_OPTIONS := nocheck'
;;
- 3.24.38)
+ "3.24.38"|"3.24.39"|"3.24.40"|"3.24.41"|"3.24.42"|"3.24.43")
# suppress "dpkg-gensymbols: error: some new symbols appeared in the symbols file" about new symbols related to show_mount_eject.
sed -i -r debian/rules -e '2aexport DPKG_GENSYMBOLS_CHECK_LEVEL=1'
;;
bgstack15