diff options
author | Victor Lowther <victor.lowther@gmail.com> | 2008-02-23 00:33:23 -0600 |
---|---|---|
committer | Victor Lowther <victor.lowther@gmail.com> | 2008-02-23 00:33:23 -0600 |
commit | 9343bda51f8feff514b2bd0430c6435ee7466148 (patch) | |
tree | 1c73ef6131b16e25243c99c42ba5faefe25766cf | |
parent | 65c84de480fb3565978e8a0778d53023a242ea95 (diff) | |
parent | 734f80b6de32c6740fc908f43407e46f36401416 (diff) |
Merge branch 'master' into stabilizaton
-rw-r--r-- | configure.ac (renamed from configure.in) | 0 | ||||
-rw-r--r-- | pm/functions.in | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.ac index d55b580..d55b580 100644 --- a/configure.in +++ b/configure.ac diff --git a/pm/functions.in b/pm/functions.in index 6fb7c94..26f27cf 100644 --- a/pm/functions.in +++ b/pm/functions.in @@ -143,8 +143,8 @@ run_hooks() { " IFS="${nifs}" # tolerate spaces in filenames. [ "$3" = "reverse" ] && sort="sort -r" - for base in $(for f in "$syshooks/"*[!~] "$phooks/"*[!~]; - do [ -O "$f" ] && echo ${f##*/} ; done | sort | uniq) ; + for base in $(IFS="${oifs}"; for f in "$syshooks/"*[!~] "$phooks/"*[!~]; + do [ -O "$f" ] && echo ${f##*/} ; done | $sort | uniq) ; do if [ -f "$syshooks/$base" ]; then hook="$syshooks/$base" |