diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-07-25 14:27:01 +0200 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-07-25 14:27:01 +0200 |
commit | cc59f9d0ff27bc63b41992e04afc67f7efe44019 (patch) | |
tree | 28a6413fb335962741188e486f9ddb62499d2bcd | |
parent | c5c71830267b42098add2862df4b15bc25ae0103 (diff) | |
download | postgresql-cc59f9d0ff27bc63b41992e04afc67f7efe44019.tar.gz postgresql-cc59f9d0ff27bc63b41992e04afc67f7efe44019.zip |
pgcrypto: Remove unused binary from clean target
Generation of the gen-rtab binary was removed in db7d1a7b0 but it
was accidentally left in the cleaning target. Remove since it is
no longer built.
Author: Alexander Lakhin <exclusion@gmail.com>
Discussion: https://postgr.es/m/c1d63754-cb85-2d8a-8409-bde2c4d2d04b@gmail.com
-rw-r--r-- | contrib/pgcrypto/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/pgcrypto/Makefile b/contrib/pgcrypto/Makefile index 5efa10c334c..85f1c946813 100644 --- a/contrib/pgcrypto/Makefile +++ b/contrib/pgcrypto/Makefile @@ -45,8 +45,6 @@ REGRESS = init md5 sha1 hmac-md5 hmac-sha1 blowfish rijndael \ pgp-armor pgp-decrypt pgp-encrypt pgp-encrypt-md5 $(CF_PGP_TESTS) \ pgp-pubkey-decrypt pgp-pubkey-encrypt pgp-info -EXTRA_CLEAN = gen-rtab - ifdef USE_PGXS PG_CONFIG = pg_config PGXS := $(shell $(PG_CONFIG) --pgxs) |