File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ diff --git a/CMakeLists.txt b/CMakeLists.txt
2
+ index 64b979a..3f785d3 100644
3
+ --- a/CMakeLists.txt
4
+ +++ b/CMakeLists.txt
5
+ @@ -359,9 +359,9 @@ if(NOT BROTLI_BUNDLED_MODE)
6
+ DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
7
+ endif() # BROTLI_BUNDLED_MODE
8
+
9
+ - INSTALL(FILES "docs/brotli.1" DESTINATION "${SHARE_INSTALL_PREFIX}/man/man1")
10
+ + INSTALL(FILES "docs/brotli.1" DESTINATION "${CMAKE_INSTALL_PREFIX}/share/man/man1")
11
+ INSTALL(FILES docs/constants.h.3 docs/decode.h.3 docs/encode.h.3 docs/types.h.3
12
+ - DESTINATION "${SHARE_INSTALL_PREFIX}/man/man3")
13
+ + DESTINATION "${CMAKE_INSTALL_PREFIX}/share/man/man3")
14
+
15
+ if (ENABLE_COVERAGE STREQUAL "yes")
16
+ SETUP_TARGET_FOR_COVERAGE(coverage test coverage)
Original file line number Diff line number Diff line change @@ -38,6 +38,11 @@ download_code () {
38
38
39
39
configure_build () {
40
40
41
+ cd " $2 /${SOFTWARE} /${SOFTWARE} /"
42
+ checkStatus $? " change directory failed"
43
+ git apply $1 /brotli_man_fix.patch
44
+ checkStatus $? " git apply patch failed"
45
+
41
46
cd " $2 /${SOFTWARE} /build-${SOFTWARE} /"
42
47
checkStatus $? " change directory failed"
43
48
You can’t perform that action at this time.
0 commit comments