Changeset View
Changeset View
Standalone View
Standalone View
files/fix-with-package-name.patch
- This file was added.
| diff --git a/meson.build b/meson.build | |||||
| index fe8cee5..c6a0f21 100644 | |||||
| --- a/meson.build | |||||
| +++ b/meson.build | |||||
| @@ -81,13 +81,14 @@ endif | |||||
| gst_package_name = get_option('with-package-name') | |||||
| if gst_package_name == '' | |||||
| if gst_version_nano == 0 | |||||
| - cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer source release') | |||||
| + gst_package_name = 'GStreamer source release' | |||||
| elif gst_version_nano == 1 | |||||
| - cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer git') | |||||
| + gst_package_name = 'GStreamer git' | |||||
| else | |||||
| - cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer prerelease') | |||||
| + gst_package_name = 'GStreamer prerelease' | |||||
| endif | |||||
| endif | |||||
| +cdata.set_quoted('GST_PACKAGE_NAME', gst_package_name) | |||||
| cdata.set_quoted('GST_PACKAGE_ORIGIN', get_option('with-package-origin')) | |||||
| # These are only needed/used by the ABI tests | |||||
Copyright © 2015-2021 Solus Project. The Solus logo is Copyright © 2016-2021 Solus Project. All Rights Reserved.