diff options
author | Luke Shumaker <luke@HP-dv6426us-u904.(none)> | 2009-11-02 20:33:40 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-06-26 00:30:18 -0600 |
commit | 07dd960ad08c52a923a1e6d8485d0cd5c9040733 (patch) | |
tree | 965aa4db62c5363c94c9fd5b1618735a84656f47 /plugins/files/commit.d.sh | |
parent | 677ddc8a26bd3f61e1f1b2952e7f29fa7bf986ee (diff) |
It appears I'd previously edited other files, but as far as I knew a moment ago:
The Makefiles have had support for DESTDIR for some time. I just realised configure didn't
Which lead me to find some bugs in configure's option handling.
Diffstat (limited to 'plugins/files/commit.d.sh')
-rw-r--r-- | plugins/files/commit.d.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/files/commit.d.sh b/plugins/files/commit.d.sh index 2b3f022..f5b432b 100644 --- a/plugins/files/commit.d.sh +++ b/plugins/files/commit.d.sh @@ -20,7 +20,8 @@ ver=0.9 source "$libexecdir/@ID@/stdio" # commit.d DIRNAME -dir="$1" +out="$1" +dir="$2" tmp=`mktemp` cd "$dir" @@ -29,6 +30,6 @@ for file in *; do echo "$file:$hash" >> "$tmp" done -"$RVS" commit.f "$tmp" +"$RVS" commit.f "$out" "$tmp" rm "$tmp" |