aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2021-06-25 07:13:30 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-06-27 07:40:09 +0200
commitb31cebcb6ad2f76eb7ad3a39948057106c4771ae (patch)
treeb3381ca8ed40f9e19ec15d625deffcb66b4e4fcb /tests
parent23d6e3a8f9fface5127cb4036621f478ca1338f5 (diff)
downloadayatana-indicator-datetime-b31cebcb6ad2f76eb7ad3a39948057106c4771ae.tar.gz
ayatana-indicator-datetime-b31cebcb6ad2f76eb7ad3a39948057106c4771ae.tar.bz2
ayatana-indicator-datetime-b31cebcb6ad2f76eb7ad3a39948057106c4771ae.zip
tests/CMakeLists.txt: Try to fix build failure on Debian Testing where cp -f is performed.
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 455eb04..5206259 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -27,7 +27,7 @@ execute_process (COMMAND ${PKG_CONFIG_EXECUTABLE} gio-2.0 --variable glib_compil
OUTPUT_STRIP_TRAILING_WHITESPACE)
add_custom_command (OUTPUT gschemas.compiled
DEPENDS ${CMAKE_BINARY_DIR}/data/org.ayatana.indicator.datetime.gschema.xml
- COMMAND cp -f ${CMAKE_BINARY_DIR}/data/*gschema.xml ${SCHEMA_DIR}
+ COMMAND cp -n ${CMAKE_BINARY_DIR}/data/*gschema.xml ${SCHEMA_DIR}
COMMAND ${COMPILE_SCHEMA_EXECUTABLE} ${SCHEMA_DIR})
# look for headers in our src dir, and also in the directories where we autogenerate files...