From d1baacabfbff9bfc0178b2dd2ac82c245ba831cf Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sat, 19 Dec 2020 16:22:49 +0100 Subject: [PATCH] Install the documentation screenshots in the correct place. The screenshots should be installed into $prefix/info/screenshots NOT $prefix/info Reported by: opensuse.lietuviu.kalba --- doc/automake.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/automake.mk b/doc/automake.mk index 0871be4289..31141e8544 100644 --- a/doc/automake.mk +++ b/doc/automake.mk @@ -300,9 +300,9 @@ doc-make: doc/doc-make.in Makefile # Install all the PNG files so that info readers can recognise them install-info-local: - $(MKDIR_P) $(DESTDIR)$(prefix)/share/info/ + $(MKDIR_P) $(DESTDIR)$(prefix)/share/info/screenshots for p in $(INFO_SCREENSHOTS); do \ - $(INSTALL_DATA) $$p $(DESTDIR)$(prefix)/share/info/ ;\ + $(INSTALL_DATA) $$p $(DESTDIR)$(prefix)/share/info/screenshots ;\ done uninstall-local: -- 2.30.2