1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

ecpg: Fix compiler warning in ecpg build with Meson.

Previously, Meson could produce a warning about the use of 'deps' in ecpg:

    WARNING: Project targets '>=0.54' but uses a feature introduced in '0.60.0': list.<plus>. The right-hand operand was not a list.

The right-hand operand of 'deps' should be a list. This commit fixes
the warning by wrapping it with square brackets.

This issue was introduced in commit 28f04984f0.

Author: Jacob Champion <jacob.champion@enterprisedb.com>
Discussion: https://postgr.es/m/CAOYmi+ks8wO06Ymxduw2h_eQJ_D4_jHGeyMK0P=p5Q3psnEdMA@mail.gmail.com
This commit is contained in:
Fujii Masao
2025-03-06 08:22:30 +09:00
parent a98e4dee63
commit 9f25b9f739

View File

@ -96,6 +96,6 @@ tests += {
't/001_ecpg_err_warn_msg.pl', 't/001_ecpg_err_warn_msg.pl',
't/002_ecpg_err_warn_msg_informix.pl', 't/002_ecpg_err_warn_msg_informix.pl',
], ],
'deps': ecpg_exe, 'deps': [ecpg_exe],
}, },
} }