Codebase list brltty / bcc953a
Fix missing eutp man page. Mario Lang 10 years ago
3 changed file(s) with 36 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
2525 * debian/brltty.examples: Update to account for renaming of a directory.
2626 * (temporarily) disable bluetooth in udeb to prevent linking against
2727 non-udeb packages.
28 * debian/patches/60-fix-man-install.patch: Cherry pick
29 a1e3a6a71d1278e243881ae7abdf0b65841c6aee from upstream to fix
30 installation of man pages for driver-specific tools.
2831
2932 -- Mario Lang <mlang@debian.org> Fri, 14 Feb 2014 15:30:40 +0100
3033
0 commit a1e3a6a71d1278e243881ae7abdf0b65841c6aee
1 Author: Dave Mielke <dave@mielke.cc>
2 Date: Mon Mar 3 22:54:46 2014 -0500
3
4 The man pages for eutp and vstp weren't getting installed when building outside the source tree. (dm)
5
6 diff --git a/Drivers/Braille/EuroBraille/Makefile.in b/Drivers/Braille/EuroBraille/Makefile.in
7 index e92ca2a..7a5ea5c 100644
8 --- a/Drivers/Braille/EuroBraille/Makefile.in
9 +++ b/Drivers/Braille/EuroBraille/Makefile.in
10 @@ -38,7 +38,7 @@ braille.$O: $(OBJ_FILES)
11 EU_TRANSFER_OBJECTS = eutp_brl.$O eutp_convert.$O eutp_debug.$O eutp_pc.$O eutp_tools.$O eutp_transfer.$O eutp_main.$O
12
13 EU_TRANSFER_TOOL = eutp$X
14 -EU_TRANSFER_MAN = eutp.1
15 +EU_TRANSFER_MAN = $(SRC_DIR)/eutp.1
16
17 $(EU_TRANSFER_TOOL): $(EU_TRANSFER_OBJECTS) brlapi
18 $(CC) $(LDFLAGS) -o $@ $(EU_TRANSFER_OBJECTS) $(API_LIBS)
19 diff --git a/Drivers/Braille/VisioBraille/Makefile.in b/Drivers/Braille/VisioBraille/Makefile.in
20 index 9b45a2c..d3dc688 100644
21 --- a/Drivers/Braille/VisioBraille/Makefile.in
22 +++ b/Drivers/Braille/VisioBraille/Makefile.in
23 @@ -49,7 +49,7 @@ install-api:: install-vstp
24
25 install-vstp: vstp$X install-program-directory install-man1-directory
26 $(INSTALL_PROGRAM) vstp$X $(INSTALL_PROGRAM_DIRECTORY)
27 - $(INSTALL_DATA) vstp.1 $(INSTALL_MAN1_DIRECTORY)
28 + $(INSTALL_DATA) $(SRC_DIR)/vstp.1 $(INSTALL_MAN1_DIRECTORY)
29
30 uninstall::
31 -rm -f $(INSTALL_PROGRAM_DIRECTORY)/vstp$X
33 40-no-update-pot.patch
44 41-java-bytecode-compat.patch
55 50-constants.patch
6 60-fix-man-install.patch