summaryrefslogtreecommitdiff
path: root/mk/bsd.pkg.mk
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-02-13 03:49:12 +0000
committerrillig <rillig@pkgsrc.org>2005-02-13 03:49:12 +0000
commitb7914945934d9b76b1fd414476130262a1e42803 (patch)
tree242e6d2a44f3c0508652184471e3ddbad72b2e30 /mk/bsd.pkg.mk
parent0c7557956aa297344c88041fa24ba6d3fc4a8486 (diff)
downloadpkgsrc-b7914945934d9b76b1fd414476130262a1e42803.tar.gz
Corrected a misspelling of a variable. I used $rebooted in a shell code,
which had better been $$rebooted (Makefile quoting). Approved by jlam.
Diffstat (limited to 'mk/bsd.pkg.mk')
-rw-r--r--mk/bsd.pkg.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index 9e5cba1b093..9658b7b1a7b 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -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 @@ _ACQUIRE_LOCK= \
: "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; \