Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
OpenFlipper-Free
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
23
Issues
23
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenFlipper-Free
OpenFlipper-Free
Commits
3ad69c16
Commit
3ad69c16
authored
Apr 28, 2017
by
Kersten Schuster
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compare SHA512 hashes using STREQUAL instead of EQUAL. Fixes weird behavior.
parent
b31d8859
Pipeline
#4879
failed with stage
in 138 minutes and 36 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
CMakeLists.txt
CMakeLists.txt
+1
-1
OpenFlipper
OpenFlipper
+1
-1
No files found.
CMakeLists.txt
View file @
3ad69c16
...
...
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)
file
(
SHA512
${
CMAKE_SOURCE_DIR
}
/CMakeLists.txt HASH_TOPLEVEL_CMAKEFILE
)
file
(
SHA512
${
CMAKE_SOURCE_DIR
}
/OpenFlipper/cmake/CMakeLists.txt HASH_LATEST_CMAKEFILE
)
if
(
NOT
${
HASH_TOPLEVEL_CMAKEFILE
}
EQUAL
${
HASH_LATEST_CMAKEFILE
}
)
if
(
NOT
${
HASH_TOPLEVEL_CMAKEFILE
}
STREQUAL
${
HASH_LATEST_CMAKEFILE
}
)
message
(
WARNING
"WARNING! Possibly Outdated toplevel CMakeLists.txt. Please update the toplevel copy by the file OpenFlipper/cmake/CMakeLists.txt ."
)
endif
()
...
...
OpenFlipper
@
01e92d18
Compare
055b5235
...
01e92d18
Subproject commit 0
55b5235afa94e8a89e2e28f4ebbf324b17c4fb8
Subproject commit 0
1e92d189d7ab7504b334d1a3a312e2a8316598c
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment