From 565804f26e130670df27b7acbb4b68ae63b4e88c Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Fri, 22 Aug 2025 20:00:18 -0300 Subject: [PATCH] meson: Complete fae39c79 regarding bug_report_url placement --- meson.build | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/meson.build b/meson.build index 1491c3da15..e7f659affa 100644 --- a/meson.build +++ b/meson.build @@ -1714,13 +1714,6 @@ endif bug_report_url = get_option('bug-report-url') if bug_report_url == '' - message(''' - NOTE: if you plan on packaging GIMP for distribution, it is recommended - to override the bug report URL with option: - -Dbug-report-url=https://example.com/ - so that you can filter packaging bugs from core bugs before reporting upstream. - ''') - bug_report_url = project_url_issues endif conf.set_quoted('PACKAGE_BUGREPORT', project_url_issues) @@ -2139,6 +2132,15 @@ final_message = [ message('\n'.join(final_message)) +if bug_report_url == project_url_issues + message(''' + NOTE: if you plan on packaging GIMP for distribution, it is recommended + to override the bug report URL with option: + -Dbug-report-url=https://example.com/ + so that you can filter packaging bugs from core bugs before reporting upstream. + ''') +endif + if warnings.length() > 0 warning('Warnings occurred during configuration') foreach warning : warnings