mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 21:58:38 -05:00
Reduce source control local changes warning to status message
This avoids IDEs detecting a build error on this notification.
This commit is contained in:
parent
2eca4001a0
commit
e77d06131d
@ -15,7 +15,7 @@ if (EXISTS "${SOURCE_DIR}/.svn")
|
|||||||
REGEX "^[^?].*$"
|
REGEX "^[^?].*$"
|
||||||
)
|
)
|
||||||
if (__svn_changes)
|
if (__svn_changes)
|
||||||
message (WARNING "Source tree based on revision ${MY_WC_LAST_CHANGED_REV} appears to have local changes")
|
message (STATUS "Source tree based on revision ${MY_WC_LAST_CHANGED_REV} appears to have local changes")
|
||||||
set (MY_WC_LAST_CHANGED_REV "${MY_WC_LAST_CHANGED_REV}-dirty")
|
set (MY_WC_LAST_CHANGED_REV "${MY_WC_LAST_CHANGED_REV}-dirty")
|
||||||
foreach (__svn_change ${__svn_changes})
|
foreach (__svn_change ${__svn_changes})
|
||||||
message (STATUS "${__svn_change}")
|
message (STATUS "${__svn_change}")
|
||||||
@ -41,7 +41,7 @@ elseif (EXISTS "${SOURCE_DIR}/.git")
|
|||||||
REGEX "^diff-tree"
|
REGEX "^diff-tree"
|
||||||
)
|
)
|
||||||
if ((NOT ${__git_svn_status} EQUAL 0) OR __svn_changes)
|
if ((NOT ${__git_svn_status} EQUAL 0) OR __svn_changes)
|
||||||
message (WARNING "Source tree based on revision ${MY_WC_LAST_CHANGED_REV} appears to have local changes")
|
message (STATUS "Source tree based on revision ${MY_WC_LAST_CHANGED_REV} appears to have local changes")
|
||||||
set (MY_WC_LAST_CHANGED_REV "${MY_WC_LAST_CHANGED_REV}-dirty")
|
set (MY_WC_LAST_CHANGED_REV "${MY_WC_LAST_CHANGED_REV}-dirty")
|
||||||
endif ()
|
endif ()
|
||||||
# write a file with the SVNVERSION define
|
# write a file with the SVNVERSION define
|
||||||
@ -56,7 +56,7 @@ elseif (EXISTS "${SOURCE_DIR}/.git")
|
|||||||
git_local_changes (${SOURCE_DIR} GIT_DIRTY)
|
git_local_changes (${SOURCE_DIR} GIT_DIRTY)
|
||||||
string (SUBSTRING "${GIT_SHA1}" 0 6 GIT_SHA1)
|
string (SUBSTRING "${GIT_SHA1}" 0 6 GIT_SHA1)
|
||||||
if ("${GIT_DIRTY}" STREQUAL "DIRTY")
|
if ("${GIT_DIRTY}" STREQUAL "DIRTY")
|
||||||
message (WARNING "Source tree based on revision ${GIT_REFSPEC} ${GIT_SHA1} appears to have local changes")
|
message (STATUS "Source tree based on revision ${GIT_REFSPEC} ${GIT_SHA1} appears to have local changes")
|
||||||
set (GIT_SHA1 "${GIT_SHA1}-dirty")
|
set (GIT_SHA1 "${GIT_SHA1}-dirty")
|
||||||
execute_process (COMMAND ${GIT_EXECUTABLE} --git-dir=${SOURCE_DIR}/.git --work-tree=${SOURCE_DIR} status
|
execute_process (COMMAND ${GIT_EXECUTABLE} --git-dir=${SOURCE_DIR}/.git --work-tree=${SOURCE_DIR} status
|
||||||
ERROR_QUIET
|
ERROR_QUIET
|
||||||
|
Loading…
Reference in New Issue
Block a user