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
commitfc644b4c450fee27683cfb73e85488a643de6fa7 (patch)
tree7246dfc085eff7d47d3802e2d37c6d6291622b53 /dep.h
parent97f106fa105b5d776fb0d6ce3b60493d25f825f4 (diff)
downloadgunmake-fc644b4c450fee27683cfb73e85488a643de6fa7.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 bf77d6b..6d7ec35 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))