summaryrefslogtreecommitdiff
path: root/wrapper/rvs.sh
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2009-09-13 17:55:03 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-06-26 00:30:15 -0600
commitaba23c26fabcc7961a55d6526bb28c92fb9c4ecd (patch)
treeabfa2a1db96aab3ecb48fa7532047c2729a17725 /wrapper/rvs.sh
parent3e100e9de3cec5ec5e9a641e782ae47ca095233d (diff)
fix Makefiles a bit
redo the ugly kludge in load_plugins(...) in wrapper/plugin-load.h
Diffstat (limited to 'wrapper/rvs.sh')
-rw-r--r--wrapper/rvs.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/wrapper/rvs.sh b/wrapper/rvs.sh
index d7fc753..4d87170 100644
--- a/wrapper/rvs.sh
+++ b/wrapper/rvs.sh
@@ -50,7 +50,7 @@ _init() {
if [ -z "$repo" ]; then
repo=".$name"
install -d "$repo"
- install -T $libexecdir/plugins $repo/plugins
+ install -m644 -T $libexecdir/plugins $repo/plugins
while read plugin; do
echo "initializing plugin \`$plugin'"
install -d "$repo/$plugin"
@@ -97,7 +97,7 @@ case "$com" in
*) repo=`_repo`
if [ "$?" = '0' ]; then
shift
- $libexecdir/runcom $@
+ "$libexecdir/runcom" $@ < $repo/plugins
exit $?
else
_error "cannot find an existing repository"