Skip to content

Commit 396a493

Browse files
committed
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 ...
1 parent 7405f2c commit 396a493

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/include/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# 'make install' installs whole contents of src/include.
66
#
7-
# $PostgreSQL: pgsql/src/include/Makefile,v 1.27 2009/06/30 17:38:50 tgl Exp $
7+
# $PostgreSQL: pgsql/src/include/Makefile,v 1.28 2009/07/20 20:38:55 alvherre Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -40,6 +40,7 @@ install: all installdirs
4040
# These headers are needed for server-side development
4141
$(INSTALL_DATA) pg_config.h '$(DESTDIR)$(includedir_server)'
4242
$(INSTALL_DATA) pg_config_os.h '$(DESTDIR)$(includedir_server)'
43+
$(INSTALL_DATA) utils/fmgroids.h '$(DESTDIR)$(includedir_server)/utils'
4344
# We don't use INSTALL_DATA for performance reasons --- there are a lot of files
4445
cp $(srcdir)/*.h '$(DESTDIR)$(includedir_server)'/ || exit; \
4546
chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/*.h || exit; \

0 commit comments

Comments
 (0)