Opened 13 years ago
Closed 13 years ago
#230 closed defect (fixed)
Avoid quoting of make variables/macros
Reported by: | rudi | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | Qt 4.7 |
Component: | qmake | Version: | |
Severity: | low | Keywords: | |
Cc: |
Description
In r909 quoting for "clean" targets was introduced. This creates a rule like this:
-$(DEL_FILE) $(basename $(DESTDIR_TARGET)).map >nul 2>&1
I think, we should not quote file names, that are expanded by make.
Attachments (1)
Change History (4)
by , 13 years ago
Attachment: | gnumake.diff added |
---|
comment:1 by , 13 years ago
Summary: | Avoid quiting of make variables/macros → Avoid quoting of make variables/macros |
---|
comment:2 by , 13 years ago
Oops, of course in the description I wanted to say:
-$(DEL_FILE) "$(basename $(DESTDIR_TARGET)).map" >nul 2>&1
Note:
See TracTickets
for help on using tickets.
Proposed patch