Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fabricate misses dependencies when filenames contain quotes #59

Open
GoogleCodeExporter opened this issue Mar 26, 2015 · 0 comments
Open
Assignees
Milestone

Comments

@GoogleCodeExporter
Copy link

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

Attachments:

@chriscz chriscz changed the title fabricate misses dependencies when files fabricate misses dependencies when filenames contain quotes May 9, 2017
@chriscz chriscz self-assigned this May 9, 2017
@chriscz chriscz added this to the 2.0 milestone Sep 19, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants