diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2024-04-19 01:07:16 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2024-04-19 01:07:16 -0400 |
commit | dd3fddc8519a7d18cc02045d8996ead09f63be66 (patch) | |
tree | ed0af5effbabceb4aa726586a97a26b004360008 /src | |
parent | 0018f0af5a51f9af5d7d3f1c17a38620f9ec8a18 (diff) |
Fix MSVC recipe for ecpg regression tests, redux.
Forgot to inject -DCMDLINESYM=123 ...
Per buildfarm.
Discussion: https://postgr.es/m/4cc4dc47-ca2b-4129-8784-db69b5f82777@dunslane.net
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/msvc/ecpg_regression.proj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/msvc/ecpg_regression.proj b/src/tools/msvc/ecpg_regression.proj index 702a3b3a0e9..8691b044cc2 100644 --- a/src/tools/msvc/ecpg_regression.proj +++ b/src/tools/msvc/ecpg_regression.proj @@ -51,6 +51,9 @@ <CreateProperty Value="-i" Condition="'%(Pgc.FileName)'=='strings'"> <Output TaskParameter="Value" PropertyName="ECPGPARAM" /> </CreateProperty> + <CreateProperty Value="-DCMDLINESYM=123" Condition="'%(Pgc.FileName)'=='define'"> + <Output TaskParameter="Value" PropertyName="ECPGPARAM" /> + </CreateProperty> <CreateProperty Value="define_prelim.pgc" Condition="'%(Pgc.FileName)'=='define'"> <Output TaskParameter="Value" PropertyName="ECPGEXTRA" /> </CreateProperty> |