summaryrefslogtreecommitdiff
path: root/src/makefiles/Makefile
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2009-08-26 22:24:44 +0000
committerPeter Eisentraut <peter_e@gmx.net>2009-08-26 22:24:44 +0000
commit9d182ef002b15c873074c710b709149450ddbcd9 (patch)
tree76bacc6e91c2ea2328c60972f361c8735a06ca77 /src/makefiles/Makefile
parent7ca774a8739bc3887abda2a0259703729026a5ca (diff)
downloadpostgresql-9d182ef002b15c873074c710b709149450ddbcd9.tar.gz
Update of install-sh, mkinstalldirs, and associated configury
Update install-sh to that from Autoconf 2.63, plus our Darwin-specific changes (which I simplified a bit). install-sh is now able to install multiple files in one run, so we could simplify our makefiles sometime. install-sh also now has a -d option to create directories, so we don't need mkinstalldirs anymore. Use AC_PROG_MKDIR_P in configure.in, so we can use mkdir -p when available instead of install-sh -d. For consistency with the rest of the world, the corresponding make variable has been renamed from $(mkinstalldirs) to $(MKDIR_P).
Diffstat (limited to 'src/makefiles/Makefile')
-rw-r--r--src/makefiles/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefiles/Makefile b/src/makefiles/Makefile
index b8756ba76a..c39128898d 100644
--- a/src/makefiles/Makefile
+++ b/src/makefiles/Makefile
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/src/makefiles/Makefile,v 1.2 2005/12/09 21:19:36 petere Exp $
+# $PostgreSQL: pgsql/src/makefiles/Makefile,v 1.3 2009/08/26 22:24:43 petere Exp $
subdir = src/makefiles
top_builddir = ../..
@@ -9,7 +9,7 @@ install: all installdirs
$(INSTALL_DATA) $(srcdir)/pgxs.mk '$(DESTDIR)$(pgxsdir)/$(subdir)/'
installdirs:
- $(mkinstalldirs) '$(DESTDIR)$(pgxsdir)/$(subdir)'
+ $(MKDIR_P) '$(DESTDIR)$(pgxsdir)/$(subdir)'
uninstall:
rm -f '$(DESTDIR)$(pgxsdir)/$(subdir)/pgxs.mk'