You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use a file with a double quote character in it:
sources = ['main', 'quot"quot']
The build will work but the .deps file will contain no dependencies for it:
"gcc -c quot\\\"quot.c": {
".": "input-5058f1af8388633f609cadb75a75dc9d"
},
The patch in attachment will have the correct dependencies returned:
"gcc -c quot\\\"quot.c": {
".": "input-5058f1af8388633f609cadb75a75dc9d",
"quot\"quot.c": "input-bebd705168971749fb60d1a52f6bc5af",
"quot\"quot.o": "output-6cf3f4efada622e871113ce385de7de1"
},
Original issue reported on code.google.com by tnagy1...@gmail.com on 26 Feb 2015 at 10:13
Original issue reported on code.google.com by
tnagy1...@gmail.com
on 26 Feb 2015 at 10:13Attachments:
The text was updated successfully, but these errors were encountered: