Skip to content

Commit 1758d4f

Browse files
committed
meson.build: Change project name, sigc++ -> libsigc++
Autotools make tarballs called libsigc++-x.y.z.tar.xz. No reason to change that. The leading "lib" is now also restored in some locations in the reference documentation.
1 parent cfe2401 commit 1758d4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of libsigc++.
22

3-
project('sigc++', 'cpp',
3+
project('libsigc++', 'cpp',
44
version: '2.10.2',
55
license: 'LGPLv2.1+',
66
default_options: [
@@ -11,7 +11,7 @@ project('sigc++', 'cpp',
1111
)
1212

1313
sigcxx_api_version = '2.0'
14-
sigcxx_pcname = meson.project_name() + '-' + sigcxx_api_version
14+
sigcxx_pcname = 'sigc++-' + sigcxx_api_version
1515

1616
sigcxx_version_array = meson.project_version().split('.')
1717
sigcxx_major_version = sigcxx_version_array[0].to_int()

0 commit comments

Comments
 (0)