diff options
author | rillig <rillig> | 2007-02-15 16:08:20 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-02-15 16:08:20 +0000 |
commit | 42105b220152a56dc2aadbd65c39b41f5807dbca (patch) | |
tree | 9d33e6b0c04a042b549c555a3e4fa9708c9b255d /mk | |
parent | 1acd2a592d745f49b69f4b80207a729923d0705d (diff) | |
download | pkgsrc-42105b220152a56dc2aadbd65c39b41f5807dbca.tar.gz |
Reverted the last change, since it was wrong. In a single shell word, a
dollar character does not have to be quoted.
Thanks to joerg for pointing me to it.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/db1.builtin.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/db1.builtin.mk b/mk/db1.builtin.mk index 25c1885190c..e077fd9633f 100644 --- a/mk/db1.builtin.mk +++ b/mk/db1.builtin.mk @@ -1,4 +1,4 @@ -# $NetBSD: db1.builtin.mk,v 1.16 2007/02/15 10:48:25 rillig Exp $ +# $NetBSD: db1.builtin.mk,v 1.17 2007/02/15 16:08:20 rillig Exp $ BUILTIN_PKG:= db1 @@ -9,7 +9,7 @@ BUILTIN_FIND_FILES.H_DB= /usr/include/db1/db.h /usr/include/db.h # The builtin Berkeley database library must support hash version 2 or # else it doesn't support db-1.85 databases. # -BUILTIN_FIND_GREP.H_DB= ^\#define.*HASHVERSION.*2\$$ +BUILTIN_FIND_GREP.H_DB= ^\#define.*HASHVERSION.*2$$ .include "../../mk/buildlink3/bsd.builtin.mk" |