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:47 -0400 |
commit | c6bfeab42ba203d0565a22612be8717c0b911e7e (patch) | |
tree | ce37a65da24511cffcc8ff7cb51c843efca2a865 /src | |
parent | 481597fc6cb8235cf62ceb4252a9e5835b3283ac (diff) | |
download | postgresql-c6bfeab42ba203d0565a22612be8717c0b911e7e.tar.gz postgresql-c6bfeab42ba203d0565a22612be8717c0b911e7e.zip |
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> |