pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/mk Corrected a misspelling of a variable. I used $rebo...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c881ca246529
branches:  trunk
changeset: 488949:c881ca246529
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sun Feb 13 03:49:12 2005 +0000

description:
Corrected a misspelling of a variable. I used $rebooted in a shell code,
which had better been $$rebooted (Makefile quoting). Approved by jlam.

diffstat:

 mk/bsd.pkg.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r b19b6962eeb5 -r c881ca246529 mk/bsd.pkg.mk
--- a/mk/bsd.pkg.mk     Sun Feb 13 03:04:55 2005 +0000
+++ b/mk/bsd.pkg.mk     Sun Feb 13 03:49:12 2005 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.pkg.mk,v 1.1587 2005/02/12 00:27:41 rillig Exp $
+#      $NetBSD: bsd.pkg.mk,v 1.1588 2005/02/13 03:49:12 rillig Exp $
 #
 # This file is in the public domain.
 #
@@ -1624,7 +1624,7 @@
                : "Remove lock files older than the last reboot";       \
                if ${TEST} -f /var/run/dmesg.boot -a -f ${LOCKFILE}; then \
                        rebooted=`${FIND} /var/run/dmesg.boot -newer ${LOCKFILE}`; \
-                       if ${TEST} x"$rebooted" != x; then              \
+                       if ${TEST} x"$$rebooted" != x; then             \
                                ${ECHO} "=> Removing stale ${LOCKFILE}"; \
                                ${RM} ${LOCKFILE};                      \
                        fi;                                             \



Home | Main Index | Thread Index | Old Index