diff options
author | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2011-10-24 07:31:23 +0000 |
---|---|---|
committer | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2011-10-24 07:31:23 +0000 |
commit | f5ce7553b033b4ce1747fe23a6b81fcd9f5f98ae (patch) | |
tree | f839a745322825be311cb2bd4ae977f990d97ddc /sysutils/wiimms/files/patch-setup-load-titles.sh | |
parent | Restore Author: tag erroneously removed in previous commit. (diff) |
Add Wiimms, a set of command line tools to manipulate Wii and GameCube
ISO images and WBFS containers.
WWW: http://wit.wiimm.de
PR: ports/159747
Submitted by: Olivier Cochard-Labbe <olivier@cochard.me>
Notes
Notes:
svn path=/head/; revision=284237
Diffstat (limited to 'sysutils/wiimms/files/patch-setup-load-titles.sh')
-rw-r--r-- | sysutils/wiimms/files/patch-setup-load-titles.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sysutils/wiimms/files/patch-setup-load-titles.sh b/sysutils/wiimms/files/patch-setup-load-titles.sh new file mode 100644 index 000000000000..5e3634ac6c99 --- /dev/null +++ b/sysutils/wiimms/files/patch-setup-load-titles.sh @@ -0,0 +1,20 @@ +--- setup/load-titles.sh.orig 2011-08-04 07:50:20.000000000 +0200 ++++ setup/load-titles.sh 2011-08-04 07:51:47.000000000 +0200 +@@ -28,7 +28,7 @@ + + #------------------------------------------------------------------------------ + +-NEEDED="wit wget tr" ++NEEDED="wit tr" + + BASE_PATH="@@INSTALL-PATH@@" + SHARE_PATH="@@SHARE-PATH@@" +@@ -68,7 +68,7 @@ + + echo "*** load $DEST from $URI" + +- if wget -q -O- "$URI" | wit titles / - >"$DEST.tmp" && test -s "$DEST.tmp" ++ if fetch -q -o- "$URI" | wit titles / - >"$DEST.tmp" && test -s "$DEST.tmp" + then + if [[ $ADD != "" ]] + then |