summaryrefslogtreecommitdiff
path: root/dep.h
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2010-07-03 16:45:45 +0000
committerPaul Smith <psmith@gnu.org>2010-07-03 16:45:45 +0000
commitb6c7652b0a44b29918eb623efbf6f0102d4b2397 (patch)
tree7246dfc085eff7d47d3802e2d37c6d6291622b53 /dep.h
parent8581fd87194ccc59b46f6c2f1f24fe4a98a2cc0c (diff)
downloadmake-b6c7652b0a44b29918eb623efbf6f0102d4b2397.tar.gz
Do not consider filenames that contain parens but don't END in a paren,
to be an archive group. Fixes Savannah bug #28525.
Diffstat (limited to 'dep.h')
-rw-r--r--dep.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/dep.h b/dep.h
index bf77d6b5..6d7ec354 100644
--- a/dep.h
+++ b/dep.h
@@ -58,9 +58,10 @@ struct nameseq
#define PARSEFS_NONE (0x0000)
#define PARSEFS_NOSTRIP (0x0001)
-#define PARSEFS_NOGLOB (0x0002)
-#define PARSEFS_EXISTS (0x0004)
-#define PARSEFS_NOCACHE (0x0008)
+#define PARSEFS_NOAR (0x0002)
+#define PARSEFS_NOGLOB (0x0004)
+#define PARSEFS_EXISTS (0x0008)
+#define PARSEFS_NOCACHE (0x0010)
#define PARSE_FILE_SEQ(_s,_t,_c,_p,_f) \
(_t *)parse_file_seq ((_s),sizeof (_t),(_c),(_p),(_f))