From: Alvaro Herrera Date: Mon, 20 Jul 2009 20:38:58 +0000 (+0000) Subject: Install src/include/utils/fmgroids.h on VPATH builds too. X-Git-Tag: REL8_3_8~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a88b3902362493f2f25c4c37306822f2eaa593db;p=postgresql 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 ... --- diff --git a/src/include/Makefile b/src/include/Makefile index e21dc57641..69a55ae565 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.23 2007/10/14 17:07:51 tgl Exp $ +# $PostgreSQL: pgsql/src/include/Makefile,v 1.23.2.1 2009/07/20 20:38:58 alvherre Exp $ # #------------------------------------------------------------------------- @@ -39,6 +39,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; \