Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
0798a177
Commit
0798a177
authored
Nov 02, 2000
by
Bill Hoffman
Browse files
BUG: make sure SOURCE_FILES starts at the begining of line
parent
6737f727
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmMakefile.cxx
View file @
0798a177
...
...
@@ -42,7 +42,8 @@ bool cmMakefile::ReadMakefile(const char* filename)
{
std
::
string
line
=
inbuffer
;
cmClassFile
file
;
if
(
line
.
find
(
"SOURCE_FILES"
)
!=
std
::
string
::
npos
)
std
::
string
::
size_type
pos
=
line
.
find
(
"SOURCE_FILES"
);
if
((
pos
!=
std
::
string
::
npos
)
&&
(
pos
==
0
)
)
{
if
(
line
.
find
(
"
\\
"
)
!=
std
::
string
::
npos
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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