From: Peter Eisentraut Date: Sat, 18 Jan 2014 04:08:22 +0000 (-0500) Subject: Fix client-only installation X-Git-Tag: REL9_4_BETA1~663 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad6bf0291a9fed503af3d5e777315a8997571647;p=postgresql Fix client-only installation The psql Makefile was not creating $(datadir) before installing psqlrc.sample there. In most cases, the directory would be created in some other way, but for the documented from-source client-only installation procedure, it could fail. Reported-by: Mike Blackwell --- diff --git a/src/bin/psql/Makefile b/src/bin/psql/Makefile index 0ed80e1fbe..3a42cae091 100644 --- a/src/bin/psql/Makefile +++ b/src/bin/psql/Makefile @@ -57,7 +57,7 @@ install: all installdirs $(INSTALL_DATA) $(srcdir)/psqlrc.sample '$(DESTDIR)$(datadir)/psqlrc.sample' installdirs: - $(MKDIR_P) '$(DESTDIR)$(bindir)' + $(MKDIR_P) '$(DESTDIR)$(bindir)' '$(DESTDIR)$(datadir)' uninstall: rm -f '$(DESTDIR)$(bindir)/psql$(X)' '$(DESTDIR)$(datadir)/psqlrc.sample'