aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--miscutils/make.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/make.c b/miscutils/make.c
index 4a8643a83..7336afdf3 100644
--- a/miscutils/make.c
+++ b/miscutils/make.c
@@ -1770,7 +1770,7 @@ readline(FILE *fd, int want_command)
1770 while (isblank(*p)) 1770 while (isblank(*p))
1771 p++; 1771 p++;
1772 1772
1773 if (*p != '\n' && *str != '#') 1773 if (*p != '\n' && (posix ? *str != '#' : *p != '#'))
1774 return str; 1774 return str;
1775 } 1775 }
1776 1776