diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2009-07-20 20:39:22 +0000 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2009-07-20 20:39:22 +0000 |
commit | 1c2539a2fa512b3014688e2a1c3d8e355cc49b89 (patch) | |
tree | 48a75373769bdc5e5d889336964e1e7a7458d7af | |
parent | 702e2989d5958e7f3004cb20e1ee8d3ec5aca864 (diff) | |
download | postgresql-1c2539a2fa512b3014688e2a1c3d8e355cc49b89.tar.gz postgresql-1c2539a2fa512b3014688e2a1c3d8e355cc49b89.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 9c84f46b8dc..6ca5cbdf2af 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.21 2005/12/09 21:19:35 petere Exp $ +# $PostgreSQL: pgsql/src/include/Makefile,v 1.21.2.1 2009/07/20 20:39:22 alvherre Exp $ # #------------------------------------------------------------------------- @@ -37,6 +37,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; \ |