diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-06 15:09:16 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-06 15:09:16 +0000 |
commit | b94f22ff24ae31984cb1367fcb9564f0972f7867 (patch) | |
tree | c3c3e41d4b5acd252451c6d3cd9b4261168f3515 /install-sh | |
parent | [w3m-dev 03383] Select the nearest map area as default. (diff) | |
download | w3m-b94f22ff24ae31984cb1367fcb9564f0972f7867.tar.gz w3m-b94f22ff24ae31984cb1367fcb9564f0972f7867.zip |
[w3m-dev 03385] install-sh typo
* install-sh: s/'/"/
From: Katsumi@yamaoka.cc
Diffstat (limited to '')
-rwxr-xr-x | install-sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# $Id: install-sh,v 1.5 2002/11/06 03:50:49 ukai Exp $ +# $Id: install-sh,v 1.6 2002/11/06 15:09:16 ukai Exp $ set -e @@ -54,7 +54,7 @@ fi if [ -n "$owner" ]; then chown $owner $dest fi -if [ -n '$group" ]; then +if [ -n "$group" ]; then chgrp $group $dest fi if [ -n "$mode" ]; then |