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 /databases/namazu2 | |
parent | 904b489974d4d5e9329c8fc8096c71b3a96d80e6 (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
Diffstat (limited to 'databases/namazu2')
-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 ;; |