mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-15 16:20:08 +02:00
51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
From a2aaa543e764c2e92dfa30353e60debfbec857ba Mon Sep 17 00:00:00 2001
|
|
From: Begasus <begasus@gmail.com>
|
|
Date: Fri, 6 Oct 2023 18:35:39 +0200
|
|
Subject: Fix installation paths
|
|
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index f51d94c..512b908 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -570,14 +570,14 @@ else (hasParent)
|
|
"${PROJECT_BINARY_DIR}/LICENSE.txt"
|
|
"${PROJECT_BINARY_DIR}/README.txt"
|
|
COMPONENT Docs
|
|
- DESTINATION share/doc/MultiMarkdown
|
|
+ DESTINATION ${CMAKE_INSTALL_DOCDIR}/MultiMarkdown
|
|
)
|
|
set (CPACK_COMPONENT_DOCS_DISPLAY_NAME "Documentation")
|
|
set (CPACK_COMPONENT_DOCS_DESCRIPTION "Install README and LICENSE.")
|
|
|
|
# Install LaTeX support files
|
|
install (FILES ${latex}
|
|
- DESTINATION share/texmf/tex/latex/mmd6
|
|
+ DESTINATION ${CMAKE_INSTALL_DATADIR}/texlive/texmf-dist/tex/latex/mmd6
|
|
COMPONENT latex
|
|
PERMISSIONS OWNER_WRITE OWNER_READ GROUP_READ WORLD_READ
|
|
)
|
|
--
|
|
2.37.3
|
|
|
|
|
|
From 3f4bb90858c11f3de75741efb2a146e8b40bbe88 Mon Sep 17 00:00:00 2001
|
|
From: Begasus <begasus@gmail.com>
|
|
Date: Fri, 6 Oct 2023 18:46:28 +0200
|
|
Subject: Fix path for perl tests
|
|
|
|
|
|
diff --git a/tests/MarkdownTest.pl b/tests/MarkdownTest.pl
|
|
index 36b25d7..cdefc90 100755
|
|
--- a/tests/MarkdownTest.pl
|
|
+++ b/tests/MarkdownTest.pl
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/perl
|
|
+#!/bin/env perl
|
|
|
|
#
|
|
# MarkdownTester -- Run tests for Markdown implementations
|
|
--
|
|
2.37.3
|
|
|