diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2009-07-20 20:48:58 +0000 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2009-07-20 20:48:58 +0000 |
commit | 8d751cfef250e180a7a694cec6e6b78213bb8ec7 (patch) | |
tree | f38e31b22e8683e439f2c20751a47e9d5c2f856a | |
parent | 160a46720c6df1001cc7aedf906ae6c0ee3704ef (diff) | |
download | postgresql-8d751cfef250e180a7a694cec6e6b78213bb8ec7.tar.gz postgresql-8d751cfef250e180a7a694cec6e6b78213bb8ec7.zip |
Install src/include/utils/fmgroids.h on VPATH builds too.
The original coding was not dealing specially with this file being a symlink,
with the end result that it was not installed in VPATH builds. Oddly enough,
the clean target does know about it ...
-rw-r--r-- | src/include/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/Makefile b/src/include/Makefile index a4cc3f3f3a5..0ced99594e9 100644 --- a/src/include/Makefile +++ b/src/include/Makefile @@ -4,7 +4,7 @@ # # 'make install' installs whole contents of src/include. # -# $PostgreSQL: pgsql/src/include/Makefile,v 1.26.2.1 2009/07/01 23:09:40 tgl Exp $ +# $PostgreSQL: pgsql/src/include/Makefile,v 1.26.2.2 2009/07/20 20:48:58 alvherre Exp $ # #------------------------------------------------------------------------- @@ -40,6 +40,7 @@ install: all installdirs # These headers are needed for server-side development $(INSTALL_DATA) pg_config.h '$(DESTDIR)$(includedir_server)' $(INSTALL_DATA) pg_config_os.h '$(DESTDIR)$(includedir_server)' + $(INSTALL_DATA) utils/fmgroids.h '$(DESTDIR)$(includedir_server)/utils' # We don't use INSTALL_DATA for performance reasons --- there are a lot of files cp $(srcdir)/*.h '$(DESTDIR)$(includedir_server)'/ || exit; \ chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/*.h || exit; \ |