diff options
author | Andres Freund <andres@anarazel.de> | 2022-09-24 11:29:29 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-09-24 11:29:30 -0700 |
commit | a075c616d22921fd90eafa852f140df9cd832209 (patch) | |
tree | 38691a6aa068bb3349c85d93c4107698d0c486b9 /src | |
parent | 6d6e1368722c664eef547d59ab23a29e555778c8 (diff) | |
download | postgresql-a075c616d22921fd90eafa852f140df9cd832209.tar.gz postgresql-a075c616d22921fd90eafa852f140df9cd832209.zip |
meson: Remove non-binary targets accidentally added to bin_targets
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/meson.build | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bin/psql/meson.build b/src/bin/psql/meson.build index ea850c8fdf5..410788e4767 100644 --- a/src/bin/psql/meson.build +++ b/src/bin/psql/meson.build @@ -21,7 +21,6 @@ psqlscanslash = custom_target('psqlscanslash', command: [flex_cmd, '--no-backup', '--fix-warnings', '--', '-Cfe', '-p', '-p']) generated_sources += psqlscanslash psql_sources += psqlscanslash -bin_targets += psqlscanslash sql_help = custom_target('psql_help', output: ['sql_help.c', 'sql_help.h'], @@ -36,7 +35,6 @@ sql_help = custom_target('psql_help', ) generated_sources += sql_help.to_list() psql_sources += sql_help -bin_targets += sql_help psql = executable('psql', psql_sources, |