diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-12-09 03:02:19 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-12-09 03:02:19 +0000 |
commit | 70cced77c0f9b0ed5b0d693ff1960bdfb2d508c2 (patch) | |
tree | 6621b3ac6b04a069321a3da1293d834384116920 /games/cowsay | |
parent | Use MLINKS to install and record a symlinked manpage instead of doing it (diff) |
Use MLINKS to install and record a symlinked manpage instead of doing it
by hand.
Submitted by: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
PR: 74440
Diffstat (limited to 'games/cowsay')
-rw-r--r-- | games/cowsay/files/patch-install.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games/cowsay/files/patch-install.sh b/games/cowsay/files/patch-install.sh new file mode 100644 index 000000000000..ef07f1e9d9f4 --- /dev/null +++ b/games/cowsay/files/patch-install.sh @@ -0,0 +1,11 @@ +--- install.sh.orig Sat Nov 27 11:40:57 2004 ++++ install.sh Sat Nov 27 11:44:05 2004 +@@ -76,7 +76,7 @@ + mkdir -p $PREFIX/man/man1 || ($mkdir $PREFIX; mkdir $PREFIX/man; mkdir $PREFIX/man/man1) + $usethisperl -p install.pl cowsay.1 > $PREFIX/man/man1/cowsay.1 + chmod a+r $PREFIX/man/man1/cowsay.1 +-ln -s cowsay.1 $PREFIX/man/man1/cowthink.1 ++#ln -s cowsay.1 $PREFIX/man/man1/cowthink.1 + mkdir -p $PREFIX/share/cows || (mkdir $PREFIX; mkdir $PREFIX/share; mkdir $PREFIX/share/cows) + tar -cf - $filelist | (cd $PREFIX/share && tar -xvf -) + set +x |