diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2010-07-19 19:30:39 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2010-07-19 19:30:39 +0000 |
commit | 3661251b0f9f72be80b78d24aa2882ab8bd6a728 (patch) | |
tree | c4178fde909ed0bc9626ea733b6b4be77d16b4bf /usr.bin/make/compat.h | |
parent | 7973fa7ae6ab4c14e686d2fe6091b16ef382b3af (diff) |
two small changes:
- allow variables in SysV modifiers, as requested by matthieu@
(since recursive variables are an extension, this just extends the
extension)
- variation on :Q called :QL (quote list), which does quote every character
EXCEPT for whitespace. e.g.,
toto:
@for i in ${VAR:QL} ...
Diffstat (limited to 'usr.bin/make/compat.h')
-rw-r--r-- | usr.bin/make/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/compat.h b/usr.bin/make/compat.h index df772d5a019..19b25046c24 100644 --- a/usr.bin/make/compat.h +++ b/usr.bin/make/compat.h @@ -1,7 +1,7 @@ #ifndef COMPAT_H #define COMPAT_H /* $OpenPackages$ */ -/* $OpenBSD: compat.h,v 1.1 2001/05/23 12:34:41 espie Exp $ */ +/* $OpenBSD: compat.h,v 1.2 2010/07/19 19:30:37 espie Exp $ */ /* * Copyright (c) 2001 Marc Espie. |