summaryrefslogtreecommitdiff
path: root/pm/functions.in
diff options
context:
space:
mode:
authorVictor Lowther <victor.lowther@gmail.com>2008-02-04 12:22:52 -0600
committerVictor Lowther <victor.lowther@gmail.com>2008-02-04 12:22:52 -0600
commitc14bf0f13d2f0c971ab12716e8fb1fbad18df3fa (patch)
tree36ceb545677b2724afe5e95c5636b03c76c7971f /pm/functions.in
parent0b47c3f1651aa31a827c2ac19d3df445b8280a6a (diff)
Fix double-quotes introduced by previous changes.
Diffstat (limited to 'pm/functions.in')
-rwxr-xr-xpm/functions.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/pm/functions.in b/pm/functions.in
index 8b04002..a9f0c1b 100755
--- a/pm/functions.in
+++ b/pm/functions.in
@@ -107,8 +107,8 @@ command_exists()
find_hooks() {
# $1 = type of hook to find.
# Currently only power and sleep are meaningful.
- local syshooks=""${PM_UTILS_ETCDIR}"/$1.d"
- local phooks=""${PM_UTILS_LIBDIR}"/$1.d"
+ local syshooks="${PM_UTILS_ETCDIR}/$1.d"
+ local phooks="${PM_UTILS_LIBDIR}/$1.d"
local base
for base in $(for f in $syshooks/*[!~] $phooks/*[!~];