As of https://github.com/NixOS/hydra/pull/737 (removal of sqlite dependency), the only supported database is Postgresql. This change removes all references to hydra-postgresql.sql file. This file is generated using a cpp on hydra.sql, but doesn't differ from hydra.sql at all.
10 lines
185 B
Makefile
10 lines
185 B
Makefile
sqldir = $(libexecdir)/hydra/sql
|
|
nobase_dist_sql_DATA = \
|
|
hydra.sql \
|
|
test.sql \
|
|
upgrade-*.sql \
|
|
update-dbix.pl
|
|
|
|
update-dbix: hydra.sql
|
|
./update-dbix-harness.sh
|