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 | 419801528066ea61546cde30c9f9f7f953e823b5 (patch) | |
tree | 55f9196d32710272fb07080ecf0863ce9e63ba76 /rvs/plugins | |
parent | 2db6b833176b0a0a55de21a38a83bd97df537191 (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 'rvs/plugins')
-rw-r--r-- | rvs/plugins/filedata/commit.sh | 3 | ||||
-rw-r--r-- | rvs/plugins/filedata/get.sh | 2 | ||||
-rw-r--r-- | rvs/plugins/files/commit.d.sh | 5 | ||||
-rw-r--r-- | rvs/plugins/files/commit.f.sh | 5 |
4 files changed, 10 insertions, 5 deletions
diff --git a/rvs/plugins/filedata/commit.sh b/rvs/plugins/filedata/commit.sh index 0f3b8d1..f046db4 100644 --- a/rvs/plugins/filedata/commit.sh +++ b/rvs/plugins/filedata/commit.sh @@ -17,8 +17,9 @@ ver=0.9 # along with this program; see the file COPYING. # If not, see <http://www.gnu.org/licenses>. +out="$1" +file="$2" hash="`cat /dev/stdin`" -file="$1" temp=`mktemp` echo "Hash: $hash" > "$temp" diff --git a/rvs/plugins/filedata/get.sh b/rvs/plugins/filedata/get.sh index 52dbe26..321d5f8 100644 --- a/rvs/plugins/filedata/get.sh +++ b/rvs/plugins/filedata/get.sh @@ -17,5 +17,7 @@ ver=0.9 # along with this program; see the file COPYING. # If not, see <http://www.gnu.org/licenses>. +out="$1" + echo "yeah, this hasn't been coded yet, sorry!" diff --git a/rvs/plugins/files/commit.d.sh b/rvs/plugins/files/commit.d.sh index 2b3f022..f5b432b 100644 --- a/rvs/plugins/files/commit.d.sh +++ b/rvs/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" diff --git a/rvs/plugins/files/commit.f.sh b/rvs/plugins/files/commit.f.sh index bbcbbe4..a86e5b5 100644 --- a/rvs/plugins/files/commit.f.sh +++ b/rvs/plugins/files/commit.f.sh @@ -20,12 +20,13 @@ ver=0.9 #source "$libexecdir/@ID@/stdio" # commit.f FILENAME -file="$1" +out="$1" +file="$2" #hash=`md5sum $file | sed "s/ .*$//"` hash=`sha1sum $file | sed "s/ .*$//"` if [ ! -f "$REPO/@ID@/$hash" ]; then install -m 644 -o $USER -g $USER -T "$file" "$REPO/@ID@/$hash" fi -echo "$hash" +echo "$hash" >> "$out" |