Closed seanlinsley closed 3 months ago
If make clean isn't called before make update_source, changes to LIB_PG_QUERY_TAG won't take effect because of the locally cached state. Fix that by ensuring clean is a dependency for update_source so it's always called first.
make clean
make update_source
LIB_PG_QUERY_TAG
clean
update_source
If
make clean
isn't called beforemake update_source
, changes toLIB_PG_QUERY_TAG
won't take effect because of the locally cached state. Fix that by ensuringclean
is a dependency forupdate_source
so it's always called first.