From: | Nathan Bossart <nathandbossart(at)gmail(dot)com> |
---|---|
To: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
Cc: | Richard Guo <guofenglinux(at)gmail(dot)com>, John Naylor <johncnaylorls(at)gmail(dot)com>, "David E(dot) Wheeler" <david(at)justatheory(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>, Daniel Gustafsson <daniel(at)yesql(dot)se> |
Subject: | Re: Generate GUC tables from .dat file |
Date: | 2025-09-03 17:14:20 |
Message-ID: | aLh3bLuQdVKTYcRE@nathan |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
I noticed that "make maintainer-clean" doesn't remove
src/include/utils/guc_tables.inc.c. This seems to fix it:
diff --git a/src/include/Makefile b/src/include/Makefile
index 3f94543f327..58eb6da27fe 100644
--- a/src/include/Makefile
+++ b/src/include/Makefile
@@ -74,7 +74,7 @@ uninstall:
clean:
rm -f utils/fmgroids.h utils/fmgrprotos.h utils/errcodes.h utils/header-stamp
rm -f storage/lwlocknames.h utils/probes.h utils/wait_event_types.h
- rm -f nodes/nodetags.h nodes/header-stamp
+ rm -f nodes/nodetags.h nodes/header-stamp utils/guc_tables.inc.c
$(MAKE) -C catalog clean
distclean: clean
--
nathan
From | Date | Subject | |
---|---|---|---|
Next Message | Dmitry Mityugov | 2025-09-03 17:37:40 | Re: Non-reproducible AIO failure |
Previous Message | Ilia Evdokimov | 2025-09-03 16:53:51 | Re: Use merge-based matching for MCVs in eqjoinsel |