1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
https://github.com/brltty/brltty/pull/454
commit 1b914e0ce037410c13c8749f73f6cc4b59884c63
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Sat Nov 23 23:42:58 2024 +0100
Add missing install dependencies
Fixes make install --shuffle (make ≥ 4.4)
diff --git a/Programs/Makefile.in b/Programs/Makefile.in
index cf7e569b7..be4e75f55 100644
--- a/Programs/Makefile.in
+++ b/Programs/Makefile.in
@@ -1183,7 +1183,7 @@ install-tools: all-tools install-program-directories
XBRLAPI_X11_AUTOSTART_FILE = 90xbrlapi
XBRLAPI_GDM_AUTOSTART_FILE = xbrlapi.desktop
-install-xbrlapi: xbrlapi$X install-program-directory install-x11-autostart-directory install-gdm-autostart-directory
+install-xbrlapi: xbrlapi$X install-program-directory install-man1-directory install-x11-autostart-directory install-gdm-autostart-directory
$(INSTALL_PROGRAM) xbrlapi$X $(INSTALL_PROGRAM_DIRECTORY)
$(INSTALL_DATA) $(BLD_TOP)$(DOC_DIR)/xbrlapi.1 $(INSTALL_MAN1_DIRECTORY)
$(INSTALL_DATA) $(BLD_TOP)Autostart/X11/$(XBRLAPI_X11_AUTOSTART_FILE) $(INSTALL_X11_AUTOSTART_DIRECTORY)
@@ -1280,7 +1280,7 @@ install-api-key:
if test ! -f $$file -a -w $(sysconfdir) -a -z "$(INSTALL_ROOT)"; \
then $(SRC_TOP)brltty-genkey -f $$file; fi
-install-api-commands: all-brltty-clip
+install-api-commands: all-brltty-clip install-program-directory
$(INSTALL_PROGRAM) brltty-clip$X $(INSTALL_PROGRAM_DIRECTORY)
###############################################################################
|