From: Tom Lane Date: Fri, 11 Dec 2015 21:14:27 +0000 (-0500) Subject: Install our "missing" script where PGXS builds can find it. X-Git-Tag: REL9_2_15~49 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=98467b35dbe2917dfad075cc5ae33896d3fe2461;p=postgresql.git 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 --- 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'