aboutsummaryrefslogtreecommitdiff
path: root/lib/gen-version-script.sh
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2016-11-02 08:09:24 -0300
committerDavid Bremner <david@tethera.net>2016-11-02 08:09:24 -0300
commit39b6080f590d4dad29c4fb941258085c30d9fe01 (patch)
treec60ee73e341509783ecb018c873d29a3e1ba0a08 /lib/gen-version-script.sh
parent79b3ba1b80fe20572144d1afd754f7c48d12d86e (diff)
parentad517e9195a29b26955999c6e11fc37c73dbc01e (diff)
Merge tag 'debian/0.23.1-1' into jessie-backports
notmuch Debian 0.23.1-1 upload (same as 0.23.1)
Diffstat (limited to 'lib/gen-version-script.sh')
-rw-r--r--lib/gen-version-script.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gen-version-script.sh b/lib/gen-version-script.sh
index 84770011..5621f2a9 100644
--- a/lib/gen-version-script.sh
+++ b/lib/gen-version-script.sh
@@ -2,7 +2,7 @@ set -eu
# we go through a bit of work to get the unmangled names of the
# typeinfo symbols because of
-# http://sourceware.org/bugzilla/show_bug.cgi?id=10326
+# https://sourceware.org/bugzilla/show_bug.cgi?id=10326
if [ $# -lt 2 ]; then
echo Usage: $0 header obj1 obj2 obj3
@@ -17,7 +17,7 @@ nm $* | awk '$1 ~ "^[0-9a-fA-F][0-9a-fA-F]*$" && $3 ~ "Xapian.*Error" {print $3
while read sym; do
demangled=$(c++filt $sym)
case $demangled in
- typeinfo*)
+ typeinfo*)
printf "\t$sym;\n"
;;
*)