pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk Fixed some pkglint warnings. At any other position ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e27987d367ed
branches:  trunk
changeset: 535372:e27987d367ed
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Thu Nov 15 12:15:43 2007 +0000

description:
Fixed some pkglint warnings. At any other position in a shell word, the
$$ would have to be escaped, so why should be leave it out just because
it is at the end of the word?

diffstat:

 mk/db1.builtin.mk |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r c3d1254edfd8 -r e27987d367ed mk/db1.builtin.mk
--- a/mk/db1.builtin.mk Thu Nov 15 12:09:52 2007 +0000
+++ b/mk/db1.builtin.mk Thu Nov 15 12:15:43 2007 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: db1.builtin.mk,v 1.18 2007/10/17 10:43:37 rillig Exp $
+# $NetBSD: db1.builtin.mk,v 1.19 2007/11/15 12:15:43 rillig Exp $
 
 BUILTIN_PKG:=  db1
 
@@ -9,7 +9,7 @@
 # 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 "buildlink3/bsd.builtin.mk"
 
@@ -83,7 +83,7 @@
 .  if !target(buildlink-db1-db185-h)
 .PHONY: buildlink-db1-db185-h
 buildlink-db1-db185-h:
-       ${_PKG_SILENT}${_PKG_DEBUG}                                     \
+       ${RUN}                                                          \
        src=${H_DB:Q};                                                  \
        dest=${BUILDLINK_DIR:Q}"/include/db_185.h";                     \
        if ${TEST} -f "$$src" -a ! -f "$$dest"; then                    \



Home | Main Index | Thread Index | Old Index