-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hopefully temporary fix for broken brotli build
- Loading branch information
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 64b979a..3f785d3 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -359,9 +359,9 @@ if(NOT BROTLI_BUNDLED_MODE) | ||
DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig") | ||
endif() # BROTLI_BUNDLED_MODE | ||
|
||
-INSTALL(FILES "docs/brotli.1" DESTINATION "${SHARE_INSTALL_PREFIX}/man/man1") | ||
+INSTALL(FILES "docs/brotli.1" DESTINATION "${CMAKE_INSTALL_PREFIX}/share/man/man1") | ||
INSTALL(FILES docs/constants.h.3 docs/decode.h.3 docs/encode.h.3 docs/types.h.3 | ||
- DESTINATION "${SHARE_INSTALL_PREFIX}/man/man3") | ||
+ DESTINATION "${CMAKE_INSTALL_PREFIX}/share/man/man3") | ||
|
||
if (ENABLE_COVERAGE STREQUAL "yes") | ||
SETUP_TARGET_FOR_COVERAGE(coverage test coverage) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters