Details
-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
Qt Creator 3.6.0
-
None
-
Windows 7
jom version 1.1.1
Description
When $(@) is parsed, it incorrectly consumes the next character. For example, in the following, the executable name would be defined as
"thing.exeone.obj"
thing.exe: one.obj two.obj
LINK $(LINKFLAGS) /OUT:$(@) $**
Putting in two spaces between the arguments mitigates the problem as does using the $@ form.