From ad6bf0291a9fed503af3d5e777315a8997571647 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 17 Jan 2014 23:08:22 -0500 Subject: [PATCH] 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 --- src/bin/psql/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' -- 2.40.0