mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 18:26:39 +02:00
39 lines
1.4 KiB
Diff
39 lines
1.4 KiB
Diff
From 897636832b3fb5cb62aea5d32db65e41262c0a78 Mon Sep 17 00:00:00 2001
|
|
From: Aster Boese <asterboese@mailbox.org>
|
|
Date: Mon, 11 Mar 2024 15:56:53 -0400
|
|
Subject: [PATCH 1/3] rename msg to message
|
|
|
|
---
|
|
src/extractor/CMakeLists.txt | 2 +-
|
|
src/qml/MediaScanner.0.1/CMakeLists.txt | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/extractor/CMakeLists.txt b/src/extractor/CMakeLists.txt
|
|
index 7bc6d3f..6e9579d 100644
|
|
--- a/src/extractor/CMakeLists.txt
|
|
+++ b/src/extractor/CMakeLists.txt
|
|
@@ -5,7 +5,7 @@ include_directories(.. ${CMAKE_CURRENT_BINARY_DIR})
|
|
# Build stubs/skeletons for D-Bus interface
|
|
find_program(gdbus_codegen gdbus-codegen)
|
|
if(NOT gdbus_codegen)
|
|
- msg(FATAL_ERROR "Could not locate gdbus-codegen")
|
|
+ message(FATAL_ERROR "Could not locate gdbus-codegen")
|
|
endif()
|
|
|
|
add_custom_command(
|
|
diff --git a/src/qml/MediaScanner.0.1/CMakeLists.txt b/src/qml/MediaScanner.0.1/CMakeLists.txt
|
|
index e08ccb0..73b5146 100644
|
|
--- a/src/qml/MediaScanner.0.1/CMakeLists.txt
|
|
+++ b/src/qml/MediaScanner.0.1/CMakeLists.txt
|
|
@@ -61,7 +61,7 @@ install(
|
|
if(NOT CMAKE_CROSSCOMPILING)
|
|
find_program(qmlplugindump_exe qmlplugindump)
|
|
if(NOT qmlplugindump_exe)
|
|
- msg(FATAL_ERROR "Could not locate qmlplugindump.")
|
|
+ message(FATAL_ERROR "Could not locate qmlplugindump.")
|
|
endif()
|
|
|
|
# qmlplugindump doesn't run reliably in the CI environment (it seems
|
|
--
|
|
2.43.2
|
|
|