diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2015-12-11 16:14:27 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2015-12-11 16:15:06 -0500 |
commit | 6061aa8ed763f1d9d37d402a0e5769c823dd797c (patch) | |
tree | 96ca5fda34517a3fca87a025e7e08d819d92d94a | |
parent | fda18e46a65196b98d6ca4ce4911085b0d2f182f (diff) | |
download | postgresql-6061aa8ed763f1d9d37d402a0e5769c823dd797c.tar.gz postgresql-6061aa8ed763f1d9d37d402a0e5769c823dd797c.zip |
Install our "missing" script where PGXS builds can find it.
This allows sane behavior in a PGXS build done on a machine where build
tools such as bison are missing.
Jim Nasby
-rw-r--r-- | config/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/Makefile b/config/Makefile index da1283868ea..67e7998f556 100644 --- a/config/Makefile +++ b/config/Makefile @@ -7,9 +7,11 @@ include $(top_builddir)/src/Makefile.global install: all installdirs $(INSTALL_SCRIPT) $(srcdir)/install-sh '$(DESTDIR)$(pgxsdir)/config/install-sh' + $(INSTALL_SCRIPT) $(srcdir)/missing '$(DESTDIR)$(pgxsdir)/config/missing' installdirs: $(MKDIR_P) '$(DESTDIR)$(pgxsdir)/config' uninstall: rm -f '$(DESTDIR)$(pgxsdir)/config/install-sh' + rm -f '$(DESTDIR)$(pgxsdir)/config/missing' |