diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2003-02-01 10:36:05 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2003-02-01 10:36:05 +0000 |
commit | ebc34f62276cbb5c82947dfd2a807f7840ab7582 (patch) | |
tree | b04f3a0d0823f6904e0205d546e882eb2843d87d | |
parent | Update to 0.3.1. (diff) |
Fix a typo that caused cp to fail.
Submitted by: Ayumu Kato <akato@rc5.so-net.ne.jp>
Notes
Notes:
svn path=/head/; revision=74416
-rw-r--r-- | databases/namazu2/pkg-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/namazu2/pkg-install b/databases/namazu2/pkg-install index fdb791adc59d..86ceb619d750 100644 --- a/databases/namazu2/pkg-install +++ b/databases/namazu2/pkg-install @@ -21,7 +21,7 @@ case $2 in if [ -f $f$sfx ]; then touch $f$sfx else - cp $f $fsfx + cp $f $f$sfx fi done ;; |