diff --git a/src/makefile.c b/src/makefile.c index 9b11ccb..0a084ab 100644 --- a/src/makefile.c +++ b/src/makefile.c @@ -180,7 +180,10 @@ static int _variables_print(Configure * configure, FILE * fp, continue; c = prints[i]; prints[i] = '\0'; - fprintf(fp, " %s", prints); + if(strchr(prints, ' ') != NULL) + fprintf(fp, " \"%s\"", prints); + else + fprintf(fp, " %s", prints); if(c == '\0') break; prints += i + 1;